Package com.luciad.ogc.wcs.common.model
Class TLcdWCSValueRange
java.lang.Object
com.luciad.ogc.wcs.common.model.TLcdWCSValueRange
- Direct Known Subclasses:
TLcdWCSInterval
The range of an interval.
If the "min" or "max" element is not included, there is no value limit in that direction.
Inclusion of the specified minimum and maximum values in the range shall be defined by the "closure".
(The interval can be bounded or semi-bounded with different closures.) The data type and the semantic of the values are inherited by children and may be superceded by them. This range may be qualitative, i.e., nominal (age range) or qualitative (percentage) meaning that a value between min/max can be queried.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets the atomic.Gets the closure.getMax()
Gets the max.getMin()
Gets the min.Gets the semantic.getType()
Gets the type.void
Sets the atomic.void
setClosure
(TLcdWCSClosure aClosure) Sets the closure.void
setMax
(TLcdWCSTypedLiteral aMax) Sets the max.void
setMin
(TLcdWCSTypedLiteral aMin) Sets the min.void
setSemantic
(String aSemantic) Sets the semantic.void
Sets the type.
-
Constructor Details
-
TLcdWCSValueRange
public TLcdWCSValueRange()
-
-
Method Details
-
getAtomic
Gets the atomic.- Returns:
- the atomic.
-
setAtomic
Sets the atomic.- Parameters:
aAtomic
- the atomic to be set.
-
getClosure
Gets the closure.- Returns:
- the closure.
-
setClosure
Sets the closure.- Parameters:
aClosure
- the closure to be set.
-
getSemantic
Gets the semantic.- Returns:
- the semantic.
-
setSemantic
Sets the semantic.- Parameters:
aSemantic
- the semantic to be set.
-
getType
Gets the type.- Returns:
- the type.
-
setType
Sets the type.- Parameters:
aType
- the type to be set.
-
getMin
Gets the min.Minimum value of this numeric parameter.
- Returns:
- the min.
-
setMin
Sets the min.Minimum value of this numeric parameter.
- Parameters:
aMin
- the min to be set.
-
getMax
Gets the max.Maximum value of this numeric parameter.
- Returns:
- the max.
-
setMax
Sets the max.Maximum value of this numeric parameter.
- Parameters:
aMax
- the max to be set.
-