Package net.opengis.gml
Interface DirectPositionType
- 
- All Superinterfaces:
- EObject,- Notifier
 - All Known Subinterfaces:
- VectorType
 - All Known Implementing Classes:
- DirectPositionTypeImpl,- VectorTypeImpl
 
 public interface DirectPositionType extends EObjectA 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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description BigIntegergetDimension()Returns the value of the 'Dimension' attribute.ListgetValue()Returns the value of the 'Value' attribute.voidsetDimension(BigInteger value)Sets the value of the 'Dimension' attribute.voidsetValue(List value)Sets the value of the 'Value' attribute.
 
- 
- 
- 
Method Detail- 
getValueList 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()
 
 - 
setValuevoid setValue(List value) Sets the value of the 'Value' attribute.- Parameters:
- value- the new value of the 'Value' attribute.
- See Also:
- getValue()
 
 - 
getDimensionBigInteger 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()
 
 - 
setDimensionvoid setDimension(BigInteger value) Sets the value of the 'Dimension' attribute.- Parameters:
- value- the new value of the 'Dimension' attribute.
- See Also:
- getDimension()
 
 
- 
 
-