Module com.esri.arcgisruntime
Enum Class LatitudeLongitudeGrid.LabelFormat
java.lang.Object
java.lang.Enum<LatitudeLongitudeGrid.LabelFormat>
com.esri.arcgisruntime.mapping.view.LatitudeLongitudeGrid.LabelFormat
- All Implemented Interfaces:
Serializable
,Comparable<LatitudeLongitudeGrid.LabelFormat>
,Constable
- Enclosing class:
LatitudeLongitudeGrid
public static enum LatitudeLongitudeGrid.LabelFormat
extends Enum<LatitudeLongitudeGrid.LabelFormat>
Represents the possible grid label distance formats that can be displayed to grid.
X-axis value is calculated from Prime Meridian and y-axis value is calculated from Equator.
- Since:
- 100.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionLabels grid lines (graticules) in decimal degrees.Labels grid lines (graticules) in degrees, minutes, and seconds. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static LatitudeLongitudeGrid.LabelFormat[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DECIMAL_DEGREES
Labels grid lines (graticules) in decimal degrees.Default labeling format.
- Since:
- 100.0.0
-
DEGREES_MINUTES_SECONDS
Labels grid lines (graticules) in degrees, minutes, and seconds.- Since:
- 100.0.0
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-