Enum Class AntiAliasingMode

java.lang.Object
java.lang.Enum<AntiAliasingMode>
com.esri.arcgisruntime.arcgisservices.AntiAliasingMode
All Implemented Interfaces:
Serializable, Comparable<AntiAliasingMode>, Constable

public enum AntiAliasingMode extends Enum<AntiAliasingMode>
Various antialiasing modes.
Since:
100.0.0
  • Enum Constant Details

    • NONE

      public static final AntiAliasingMode NONE
      No antialiasing is performed.
    • FASTEST

      public static final AntiAliasingMode FASTEST
      Minimal antialiasing is performed, optimized for speed.
    • FAST

      public static final AntiAliasingMode FAST
      Some antialiasing is performed, optimized for speed with better quality than can be achieved with Fastest.
    • NORMAL

      public static final AntiAliasingMode NORMAL
      A good balance of speed and quality.
    • BEST

      public static final AntiAliasingMode BEST
      The best quality antialiasing. This option takes the longest to render.
  • Method Details

    • values

      public static AntiAliasingMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AntiAliasingMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null