Package net.opengis.gml
Interface DirectPositionType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Subinterfaces:
VectorType
- All Known Implementing Classes:
DirectPositionTypeImpl
,VectorTypeImpl
public interface DirectPositionType extends EObject
A representation of the model object 'Direct Position Type'. DirectPosition instances hold the coordinates for a position within some coordinate reference system (CRS). Since DirectPositions, as data types, will often be included in larger objects (such as geometry elements) that have references to CRS, the "srsName" attribute will in general be missing, if this particular DirectPosition is included in a larger element with such a reference to a CRS. In this case, the CRS is implicitly assumed to take on the value of the containing object's CRS.The following features are supported:
- See Also:
GmlPackage.getDirectPositionType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BigInteger
getDimension()
Returns the value of the 'Dimension' attribute.List
getValue()
Returns the value of the 'Value' attribute.void
setDimension(BigInteger value)
Sets the value of the 'Dimension
' attribute.void
setValue(List value)
Sets the value of the 'Value
' attribute.
-
-
-
Method Detail
-
getValue
List getValue()
Returns the value of the 'Value' attribute.If the meaning of the 'Value' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Value' attribute.
- See Also:
setValue(List)
,GmlPackage.getDirectPositionType_Value()
-
setValue
void setValue(List value)
Sets the value of the 'Value
' attribute.- Parameters:
value
- the new value of the 'Value' attribute.- See Also:
getValue()
-
getDimension
BigInteger getDimension()
Returns the value of the 'Dimension' attribute. The attribute "dimension" is the length of coordinate sequence (the number of entries in the list). This is determined by the coordinate reference system.- Returns:
- the value of the 'Dimension' attribute.
- See Also:
setDimension(BigInteger)
,GmlPackage.getDirectPositionType_Dimension()
-
setDimension
void setDimension(BigInteger value)
Sets the value of the 'Dimension
' attribute.- Parameters:
value
- the new value of the 'Dimension' attribute.- See Also:
getDimension()
-
-