Enum UsngGrid.LabelUnit

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<UsngGrid.LabelUnit>
    Enclosing class:
    UsngGrid

    public static enum UsngGrid.LabelUnit
    extends java.lang.Enum<UsngGrid.LabelUnit>
    Represents possible grid label distance units that can be displayed to the grid.

    X-axis value is calculated from bottom side of grid square and y-axis value is calculated from left side of grid square.

    Since:
    100.0.0 for JavaSE and 100.2.0 for Android
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      KILOMETERS_METERS
      Labels are displayed in kilometers or meters based on MapView's scale.
      METERS
      Labels are displayed in meters.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static UsngGrid.LabelUnit valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static UsngGrid.LabelUnit[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • KILOMETERS_METERS

        public static final UsngGrid.LabelUnit KILOMETERS_METERS
        Labels are displayed in kilometers or meters based on MapView's scale.

        Default labeling format.

        Since:
        100.0.0 for JavaSE and 100.2.0 for Android
      • METERS

        public static final UsngGrid.LabelUnit METERS
        Labels are displayed in meters.
        Since:
        100.0.0 for JavaSE and 100.2.0 for Android
    • Method Detail

      • values

        public static UsngGrid.LabelUnit[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (UsngGrid.LabelUnit c : UsngGrid.LabelUnit.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static UsngGrid.LabelUnit valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null