Class TLcdWCSClosure

java.lang.Object
com.luciad.ogc.wcs.common.model.TLcdWCSClosure

public final class TLcdWCSClosure extends Object
Specifies which of the minimum and maximum values are included in the range. Note that plus and minus infinity are considered closed bounds.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final TLcdWCSClosure
    The specified minimum and maximum values are included in this range.
    static final TLcdWCSClosure
    The specified minimum value IS included in this range, and the specified maximum value is NOT included in this range.
    static final TLcdWCSClosure
    The specified minimum and maximum values are NOT included in this range.
    static final TLcdWCSClosure
    The specified minimum value is NOT included in this range, and the specified maximum value IS included in this range.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a string representation of the object.
    valueOf(String aString)
    Returns the instance that corresponds to the given string representation or null if none corresponds.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • CLOSED

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

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

      public static final TLcdWCSClosure OPEN_CLOSED
      The specified minimum value is NOT included in this range, and the specified maximum value IS included in this range.
    • CLOSED_OPEN

      public static final TLcdWCSClosure CLOSED_OPEN
      The specified minimum value IS included in this range, and the specified maximum value is NOT included in this range.
  • Method Details

    • toString

      public String toString()
      Returns a string representation of the object.
      Overrides:
      toString in class Object
      Returns:
      a string representation of the object.
    • valueOf

      public static TLcdWCSClosure valueOf(String aString)
      Returns the instance that corresponds to the given string representation or null if none corresponds.
      Parameters:
      aString - the given string representation.
      Returns:
      the instance that corresponds to the given string representation or null if none corresponds.