Package net.opengis.ows11
Interface RangeType
- 
- All Superinterfaces:
- EObject,- Notifier
 - All Known Implementing Classes:
- RangeTypeImpl
 
 public interface RangeType extends EObjectA representation of the model object 'Range Type'. A range of values of a numeric parameter. This range can be continuous or discrete, defined by a fixed spacing between adjacent valid values. If the MinimumValue or MaximumValue 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 rangeClosure.The following features are supported: - See Also:
- Ows11Package.getRangeType()
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ValueTypegetMaximumValue()Returns the value of the 'Maximum Value' containment reference.ValueTypegetMinimumValue()Returns the value of the 'Minimum Value' containment reference.RangeClosureTypegetRangeClosure()Returns the value of the 'Range Closure' attribute.ValueTypegetSpacing()Returns the value of the 'Spacing' containment reference.booleanisSetRangeClosure()Returns whether the value of the 'Range Closure' attribute is set.voidsetMaximumValue(ValueType value)Sets the value of the 'Maximum Value' containment reference.voidsetMinimumValue(ValueType value)Sets the value of the 'Minimum Value' containment reference.voidsetRangeClosure(RangeClosureType value)Sets the value of the 'Range Closure' attribute.voidsetSpacing(ValueType value)Sets the value of the 'Spacing' containment reference.voidunsetRangeClosure()Unsets the value of the 'Range Closure' attribute.
 
- 
- 
- 
Method Detail- 
getMinimumValueValueType getMinimumValue() Returns the value of the 'Minimum Value' containment reference. Minimum value of this numeric parameter.- Returns:
- the value of the 'Minimum Value' containment reference.
- See Also:
- setMinimumValue(ValueType),- Ows11Package.getRangeType_MinimumValue()
 
 - 
setMinimumValuevoid setMinimumValue(ValueType value) Sets the value of the 'Minimum Value' containment reference.- Parameters:
- value- the new value of the 'Minimum Value' containment reference.
- See Also:
- getMinimumValue()
 
 - 
getMaximumValueValueType getMaximumValue() Returns the value of the 'Maximum Value' containment reference. Maximum value of this numeric parameter.- Returns:
- the value of the 'Maximum Value' containment reference.
- See Also:
- setMaximumValue(ValueType),- Ows11Package.getRangeType_MaximumValue()
 
 - 
setMaximumValuevoid setMaximumValue(ValueType value) Sets the value of the 'Maximum Value' containment reference.- Parameters:
- value- the new value of the 'Maximum Value' containment reference.
- See Also:
- getMaximumValue()
 
 - 
getSpacingValueType getSpacing() Returns the value of the 'Spacing' containment reference. Shall be included when the allowed values are NOT continuous in this range. Shall not be included when the allowed values are continuous in this range.- Returns:
- the value of the 'Spacing' containment reference.
- See Also:
- setSpacing(ValueType),- Ows11Package.getRangeType_Spacing()
 
 - 
setSpacingvoid setSpacing(ValueType value) Sets the value of the 'Spacing' containment reference.- Parameters:
- value- the new value of the 'Spacing' containment reference.
- See Also:
- getSpacing()
 
 - 
getRangeClosureRangeClosureType getRangeClosure() Returns the value of the 'Range Closure' attribute. The default value is"closed". The literals are from the enumerationRangeClosureType. Shall be included unless the default value applies.- Returns:
- the value of the 'Range Closure' attribute.
- See Also:
- RangeClosureType,- isSetRangeClosure(),- unsetRangeClosure(),- setRangeClosure(RangeClosureType),- Ows11Package.getRangeType_RangeClosure()
 
 - 
setRangeClosurevoid setRangeClosure(RangeClosureType value) Sets the value of the 'Range Closure' attribute.- Parameters:
- value- the new value of the 'Range Closure' attribute.
- See Also:
- RangeClosureType,- isSetRangeClosure(),- unsetRangeClosure(),- getRangeClosure()
 
 - 
unsetRangeClosurevoid unsetRangeClosure() Unsets the value of the 'Range Closure' attribute.
 - 
isSetRangeClosureboolean isSetRangeClosure() Returns whether the value of the 'Range Closure' attribute is set.- Returns:
- whether the value of the 'Range Closure' attribute is set.
- See Also:
- unsetRangeClosure(),- getRangeClosure(),- setRangeClosure(RangeClosureType)
 
 
- 
 
-