Class RangeMeaning

java.lang.Object
org.opengis.util.CodeList<RangeMeaning>
org.opengis.referencing.cs.RangeMeaning
All Implemented Interfaces:
Serializable, Comparable<RangeMeaning>

@UML(identifier="CS_RangeMeaning", specification=ISO_19111) public final class RangeMeaning extends CodeList<RangeMeaning>
Meaning of the axis value range specified through minimum value and maximum value.
Since:
2.1
Version:
3.0
See Also:
  • Field Details

  • Constructor Details

    • RangeMeaning

      private RangeMeaning(String name)
      Constructs an enum with the given name. The new enum is automatically added to the list returned by values().
      Parameters:
      name - The enum name. This name must not be in use by an other enum of this type.
  • Method Details

    • values

      public static RangeMeaning[] values()
      Returns the list of RangeMeanings.
      Returns:
      The list of codes declared in the current JVM.
    • family

      public RangeMeaning[] family()
      Returns the list of enumerations of the same kind than this enum.
      Specified by:
      family in class CodeList<RangeMeaning>
      Returns:
      The codes of the same kind than this code.
    • valueOf

      public static RangeMeaning valueOf(String code)
      Returns the range meaning that matches the given string, or returns a new one if none match it.
      Parameters:
      code - The name of the code to fetch or to create.
      Returns:
      A code matching the given name.