Enum Class TLspGARSGridStyle.GARSLevel
java.lang.Object
java.lang.Enum<TLspGARSGridStyle.GARSLevel>
com.luciad.view.lightspeed.painter.grid.gars.TLspGARSGridStyle.GARSLevel
- All Implemented Interfaces:
Serializable
,Comparable<TLspGARSGridStyle.GARSLevel>
,Constable
- Enclosing class:
TLspGARSGridStyle
The GARS grid level. This can either be the 15 or 1 degrees squares or the minute to sub-minute squares.
- Since:
- 2021.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription30 minute by 30 minute cells.5 minute by 5 minute keypads.15 minute by 15 minute quadrants. -
Method Summary
Modifier and TypeMethodDescriptionstatic TLspGARSGridStyle.GARSLevel
Returns the enum constant of this class with the specified name.static TLspGARSGridStyle.GARSLevel[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CELLS_30_MINUTES
30 minute by 30 minute cells. -
QUADRANTS_15_MINUTES
15 minute by 15 minute quadrants. -
KEYPADS_5_MINUTES
5 minute by 5 minute keypads.
-
-
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
-