Enum Class TLcdGARSFormat.Precision

java.lang.Object
java.lang.Enum<TLcdGARSFormat.Precision>
com.luciad.text.gars.TLcdGARSFormat.Precision
All Implemented Interfaces:
Serializable, Comparable<TLcdGARSFormat.Precision>, Constable
Enclosing class:
TLcdGARSFormat

public static enum TLcdGARSFormat.Precision extends Enum<TLcdGARSFormat.Precision>
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
  • Enum Constant Details

    • CELL

      public static final TLcdGARSFormat.Precision CELL
      A precision of cell representing a 30-minute by 30-minute cell, identified by a five-character designation (for example, "403AA").
    • QUADRANT

      public static final TLcdGARSFormat.Precision QUADRANT
      A precision of quadrant representing a 15-minute by 15-minute cell, identified by a six-character designation (for example, "403AA3").
    • KEYPAD

      public static final TLcdGARSFormat.Precision 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

      public static TLcdGARSFormat.Precision[] 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

      public static TLcdGARSFormat.Precision valueOf(String name)
      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 name
      NullPointerException - if the argument is null