Package com.luciad.view.map.mgrs
Enum Class TLcdMGRSGridStyle.MGRSLevel
- All Implemented Interfaces:
Serializable
,Comparable<TLcdMGRSGridStyle.MGRSLevel>
,Constable
- Enclosing class:
TLcdMGRSGridStyle
The MGRS level. This can either be the zones, or the 100000m
->
1m grid squares.- Since:
- 2015.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIn UTM, these are the boundaries of the 60 zones, intersected with parallel lines (generally, every 8 degrees).
In UPS this constant is not used, useZONES
instead.The 1000000m grid squares.The 100000m grid squares.The 10000m grid squares.The 1000m grid squares.The 100m grid squares.The 10m grid squares.The 1m grid squares.In UTM, these are the 60 UTM (lon lat) zones.
In UPS, these are the 4 UPS zone, 2 at each pole. -
Method Summary
Modifier and TypeMethodDescriptionstatic TLcdMGRSGridStyle.MGRSLevel
Returns the enum constant of this class with the specified name.static TLcdMGRSGridStyle.MGRSLevel[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ZONES
In UTM, these are the 60 UTM (lon lat) zones.
In UPS, these are the 4 UPS zone, 2 at each pole. -
BANDS
In UTM, these are the boundaries of the 60 zones, intersected with parallel lines (generally, every 8 degrees).
In UPS this constant is not used, useZONES
instead. -
SQUARES_1000000M
The 1000000m grid squares. -
SQUARES_100000M
The 100000m grid squares. -
SQUARES_10000M
The 10000m grid squares. -
SQUARES_1000M
The 1000m grid squares. -
SQUARES_100M
The 100m grid squares. -
SQUARES_10M
The 10m grid squares. -
SQUARES_1M
The 1m grid 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
-