Enum Class TLspGeorefGridStyle.GeorefLevel
java.lang.Object
java.lang.Enum<TLspGeorefGridStyle.GeorefLevel>
com.luciad.view.lightspeed.painter.grid.TLspGeorefGridStyle.GeorefLevel
- All Implemented Interfaces:
Serializable
,Comparable<TLspGeorefGridStyle.GeorefLevel>
,Constable
- Enclosing class:
TLspGeorefGridStyle
The Georef grid level. This can either be the 15 or 1 degrees squares or the minute to sub-minute squares.
- Since:
- 2015.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe 1 degree squares.The 1 minute squares.The 0.1 minute squares.The 0.01 minute squares.The 0.001 minute squares.The 0.0001 minute squares.The 10 minute squares.The 15 degrees squares. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static TLspGeorefGridStyle.GeorefLevel[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SQUARES_15_DEGREES
The 15 degrees squares. -
SQUARES_1_DEGREE
The 1 degree squares. -
SQUARES_10_MINUTES
The 10 minute squares. -
SQUARES_1_MINUTE
The 1 minute squares. -
SQUARES_1_OVER_10_MINUTES
The 0.1 minute squares. -
SQUARES_1_OVER_100_MINUTES
The 0.01 minute squares. -
SQUARES_1_OVER_1000_MINUTES
The 0.001 minute squares. -
SQUARES_1_OVER_10000_MINUTES
The 0.0001 minute squares.
-
-
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
-