Package net.opengis.gml311
Interface GridFunctionType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Subinterfaces:
IndexMapType
- All Known Implementing Classes:
GridFunctionTypeImpl
,IndexMapTypeImpl
public interface GridFunctionType extends EObject
A representation of the model object 'Grid Function Type'. Defines how values in the domain are mapped to the range set. The start point and the sequencing rule are specified here.The following features are supported:
- See Also:
Gml311Package.getGridFunctionType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SequenceRuleType
getSequenceRule()
Returns the value of the 'Sequence Rule' containment reference.List<BigInteger>
getStartPoint()
Returns the value of the 'Start Point' attribute.void
setSequenceRule(SequenceRuleType value)
Sets the value of the 'Sequence Rule
' containment reference.void
setStartPoint(List<BigInteger> value)
Sets the value of the 'Start Point
' attribute.
-
-
-
Method Detail
-
getSequenceRule
SequenceRuleType getSequenceRule()
Returns the value of the 'Sequence Rule' containment reference. If absent, the implied value is "Linear".- Returns:
- the value of the 'Sequence Rule' containment reference.
- See Also:
setSequenceRule(SequenceRuleType)
,Gml311Package.getGridFunctionType_SequenceRule()
-
setSequenceRule
void setSequenceRule(SequenceRuleType value)
Sets the value of the 'Sequence Rule
' containment reference.- Parameters:
value
- the new value of the 'Sequence Rule' containment reference.- See Also:
getSequenceRule()
-
getStartPoint
List<BigInteger> getStartPoint()
Returns the value of the 'Start Point' attribute. Index position of the first grid post, which must lie somwhere in the GridEnvelope. If absent, the startPoint is equal to the value of gridEnvelope::low from the grid definition.- Returns:
- the value of the 'Start Point' attribute.
- See Also:
setStartPoint(List)
,Gml311Package.getGridFunctionType_StartPoint()
-
setStartPoint
void setStartPoint(List<BigInteger> value)
Sets the value of the 'Start Point
' attribute.- Parameters:
value
- the new value of the 'Start Point' attribute.- See Also:
getStartPoint()
-
-