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

    • CLOSED

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

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

      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

      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

    • values

      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

      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

      public String value()
    • toString

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

      public static ELcdOWSRangeClosure fromValue(String aValue)
    • toValue

      public static String toValue(ELcdOWSRangeClosure aValue)