Package net.opengis.wcs10
Interface ValueRangeType
- 
- All Superinterfaces:
- EObject,- Notifier
 - All Known Subinterfaces:
- IntervalType
 - All Known Implementing Classes:
- IntervalTypeImpl,- ValueRangeTypeImpl
 
 public interface ValueRangeType extends EObjectA representation of the model object 'Value Range Type'. 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.The following features are supported: - See Also:
- Wcs10Package.getValueRangeType()
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ClosureTypegetClosure()Returns the value of the 'Closure' attribute.TypedLiteralTypegetMax()Returns the value of the 'Max' containment reference.TypedLiteralTypegetMin()Returns the value of the 'Min' containment reference.StringgetSemantic()Returns the value of the 'Semantic' attribute.StringgetType()Returns the value of the 'Type' attribute.booleanisAtomic()Returns the value of the 'Atomic' attribute.booleanisSetAtomic()Returns whether the value of the 'Atomic' attribute is set.booleanisSetClosure()Returns whether the value of the 'Closure' attribute is set.voidsetAtomic(boolean value)Sets the value of the 'Atomic' attribute.voidsetClosure(ClosureType value)Sets the value of the 'Closure' attribute.voidsetMax(TypedLiteralType value)Sets the value of the 'Max' containment reference.voidsetMin(TypedLiteralType value)Sets the value of the 'Min' containment reference.voidsetSemantic(String value)Sets the value of the 'Semantic' attribute.voidsetType(String value)Sets the value of the 'Type' attribute.voidunsetAtomic()Unsets the value of the 'Atomic' attribute.voidunsetClosure()Unsets the value of the 'Closure' attribute.
 
- 
- 
- 
Method Detail- 
getMinTypedLiteralType getMin() Returns the value of the 'Min' containment reference. Minimum value of this numeric parameter.- Returns:
- the value of the 'Min' containment reference.
- See Also:
- setMin(TypedLiteralType),- Wcs10Package.getValueRangeType_Min()
 
 - 
setMinvoid setMin(TypedLiteralType value) Sets the value of the 'Min' containment reference.- Parameters:
- value- the new value of the 'Min' containment reference.
- See Also:
- getMin()
 
 - 
getMaxTypedLiteralType getMax() Returns the value of the 'Max' containment reference. Maximum value of this numeric parameter.- Returns:
- the value of the 'Max' containment reference.
- See Also:
- setMax(TypedLiteralType),- Wcs10Package.getValueRangeType_Max()
 
 - 
setMaxvoid setMax(TypedLiteralType value) Sets the value of the 'Max' containment reference.- Parameters:
- value- the new value of the 'Max' containment reference.
- See Also:
- getMax()
 
 - 
isAtomicboolean isAtomic() Returns the value of the 'Atomic' attribute. The default value is"false". What does this attribute mean? Is it useful and not redundant? When should this attribute be included or omitted? TBD.- Returns:
- the value of the 'Atomic' attribute.
- See Also:
- isSetAtomic(),- unsetAtomic(),- setAtomic(boolean),- Wcs10Package.getValueRangeType_Atomic()
 
 - 
setAtomicvoid setAtomic(boolean value) Sets the value of the 'Atomic' attribute.- Parameters:
- value- the new value of the 'Atomic' attribute.
- See Also:
- isSetAtomic(),- unsetAtomic(),- isAtomic()
 
 - 
unsetAtomicvoid unsetAtomic() Unsets the value of the 'Atomic' attribute.- See Also:
- isSetAtomic(),- isAtomic(),- setAtomic(boolean)
 
 - 
isSetAtomicboolean isSetAtomic() Returns whether the value of the 'Atomic' attribute is set.- Returns:
- whether the value of the 'Atomic' attribute is set.
- See Also:
- unsetAtomic(),- isAtomic(),- setAtomic(boolean)
 
 - 
getClosureClosureType getClosure() Returns the value of the 'Closure' attribute. The default value is"closed". The literals are from the enumerationClosureType. Shall be included unless the default value applies.- Returns:
- the value of the 'Closure' attribute.
- See Also:
- ClosureType,- isSetClosure(),- unsetClosure(),- setClosure(ClosureType),- Wcs10Package.getValueRangeType_Closure()
 
 - 
setClosurevoid setClosure(ClosureType value) Sets the value of the 'Closure' attribute.- Parameters:
- value- the new value of the 'Closure' attribute.
- See Also:
- ClosureType,- isSetClosure(),- unsetClosure(),- getClosure()
 
 - 
unsetClosurevoid unsetClosure() Unsets the value of the 'Closure' attribute.- See Also:
- isSetClosure(),- getClosure(),- setClosure(ClosureType)
 
 - 
isSetClosureboolean isSetClosure() Returns whether the value of the 'Closure' attribute is set.- Returns:
- whether the value of the 'Closure' attribute is set.
- See Also:
- unsetClosure(),- getClosure(),- setClosure(ClosureType)
 
 - 
getSemanticString getSemantic() Returns the value of the 'Semantic' attribute. Can be omitted when the semantics or meaning of values in this interval is clearly specified elsewhere, or the "semantic" attribute is included in an enclosing element.- Returns:
- the value of the 'Semantic' attribute.
- See Also:
- setSemantic(String),- Wcs10Package.getValueRangeType_Semantic()
 
 - 
setSemanticvoid setSemantic(String value) Sets the value of the 'Semantic' attribute.- Parameters:
- value- the new value of the 'Semantic' attribute.
- See Also:
- getSemantic()
 
 - 
getTypeString getType() Returns the value of the 'Type' attribute. Can be omitted when the datatype of values in this interval is string, or the "type" attribute is included in an enclosing element.- Returns:
- the value of the 'Type' attribute.
- See Also:
- setType(String),- Wcs10Package.getValueRangeType_Type()
 
 
- 
 
-