Enum Class ELcdOWSRangeClosure

java.lang.Object
java.lang.Enum<ELcdOWSRangeClosure>
com.luciad.ogc.ows.model.ELcdOWSRangeClosure
All Implemented Interfaces:
Serializable, Comparable<ELcdOWSRangeClosure>, Constable

public enum ELcdOWSRangeClosure extends Enum<ELcdOWSRangeClosure>
  • Enum Constant Details Link icon

    • CLOSED Link icon

      public static final ELcdOWSRangeClosure CLOSED
      The specified minimum and maximum values are included in this range.
    • OPEN Link icon

      public static final ELcdOWSRangeClosure OPEN
      The specified minimum and maximum values are NOT included in this range.
    • OPEN__MINUS__CLOSED Link icon

      public static final ELcdOWSRangeClosure OPEN__MINUS__CLOSED
      The specified minimum value is NOT included in this range, and the specified maximum value IS included in this range.
    • CLOSED__MINUS__OPEN Link icon

      public static final ELcdOWSRangeClosure CLOSED__MINUS__OPEN
      The specified minimum value IS included in this range, and the specified maximum value is NOT included in this range.
  • Method Details Link icon

    • values Link icon

      public static ELcdOWSRangeClosure[] 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 Link icon

      public static ELcdOWSRangeClosure 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
    • value Link icon

      public String value()
    • toString Link icon

      public String toString()
      Overrides:
      toString in class Enum<ELcdOWSRangeClosure>
    • fromValue Link icon

      public static ELcdOWSRangeClosure fromValue(String aValue)
    • toValue Link icon

      public static String toValue(ELcdOWSRangeClosure aValue)