Enum AntiAliasingMode
- java.lang.Object
-
- java.lang.Enum<AntiAliasingMode>
-
- com.esri.arcgisruntime.arcgisservices.AntiAliasingMode
-
- All Implemented Interfaces:
Serializable
,Comparable<AntiAliasingMode>
public enum AntiAliasingMode extends Enum<AntiAliasingMode>
Various antialiasing modes.- Since:
- 100.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BEST
The best quality antialiasing.FAST
Some antialiasing is performed, optimized for speed with better quality than can be achieved with Fastest.FASTEST
Minimal antialiasing is performed, optimized for speed.NONE
No antialiasing is performed.NORMAL
A good balance of speed and quality.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AntiAliasingMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static AntiAliasingMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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 Detail
-
values
public static AntiAliasingMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AntiAliasingMode c : AntiAliasingMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AntiAliasingMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-