Package com.luciad.text.gars
Enum Class TLcdGARSFormat.Precision
- All Implemented Interfaces:
Serializable
,Comparable<TLcdGARSFormat.Precision>
,Constable
- Enclosing class:
TLcdGARSFormat
The precision of the formatted GARS coordinate strings.
This enum is used to represent a level of precision with
which a formatted GARS coordinate grid can be represented on a map.
Refer TLcdGARSFormat.setPrecision(Precision)
- Since:
- 2020.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA precision of cell representing a 30-minute by 30-minute cell, identified by a five-character designation (for example, "403AA").A precision of keypad representing a 5-minute by 5-minute cell, identified by a seven-character designation (for example, "403AA37").A precision of quadrant representing a 15-minute by 15-minute cell, identified by a six-character designation (for example, "403AA3"). -
Method Summary
Modifier and TypeMethodDescriptionstatic TLcdGARSFormat.Precision
Returns the enum constant of this class with the specified name.static TLcdGARSFormat.Precision[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CELL
A precision of cell representing a 30-minute by 30-minute cell, identified by a five-character designation (for example, "403AA"). -
QUADRANT
A precision of quadrant representing a 15-minute by 15-minute cell, identified by a six-character designation (for example, "403AA3"). -
KEYPAD
A precision of keypad representing a 5-minute by 5-minute cell, identified by a seven-character designation (for example, "403AA37").
-
-
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
-