Class DistanceOperatorName

Object
CodeList<DistanceOperatorName>
DistanceOperatorName
All Implemented Interfaces:
Serializable, Comparable<DistanceOperatorName>, ControlledVocabulary

@UML(identifier="DistanceOperatorName", specification=ISO_19143) public final class DistanceOperatorName extends CodeList<DistanceOperatorName>
Nature of the spatial operation computed with geometries and a distance parameter.
Since:
3.1
See Also:
  • Field Details

  • Method Details

    • values

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

      public DistanceOperatorName[] family()
      Returns the list of codes of the same kind than this code list element. Invoking this method is equivalent to invoking values(), except that this method can be invoked on an instance of the parent CodeList class.
      Specified by:
      family in interface ControlledVocabulary
      Specified by:
      family in class CodeList<DistanceOperatorName>
      Returns:
      all code values for this code list.
    • valueOf

      public static DistanceOperatorName valueOf(String code)
      Returns the distance operator that matches the given string, or returns a new one if none match it. More specifically, this methods returns the first instance for which name().equals(code) returns true. If no existing instance is found, then a new one is created for the given name.
      Parameters:
      code - the name of the code to fetch or to create.
      Returns:
      a code matching the given name.