Package com.luciad.ogc.wcs.common.model
Class TLcdWCSClosure
java.lang.Object
com.luciad.ogc.wcs.common.model.TLcdWCSClosure
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
Modifier and TypeFieldDescriptionstatic 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 TypeMethodDescriptiontoString()
Returns a string representation of the object.static TLcdWCSClosure
Returns the instance that corresponds to the given string representation or null if none corresponds.
-
Field Details
-
CLOSED
The specified minimum and maximum values are included in this range. -
OPEN
The specified minimum and maximum values are NOT included in this range. -
OPEN_CLOSED
The specified minimum value is NOT included in this range, and the specified maximum value IS included in this range. -
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
Returns a string representation of the object. -
valueOf
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.
-