Package net.opengis.gml311
Interface CoordType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Implementing Classes:
CoordTypeImpl
public interface CoordType extends EObject
A representation of the model object 'Coord Type'. Represents a coordinate tuple in one, two, or three dimensions. Deprecated with GML 3.0 and replaced by DirectPositionType.The following features are supported:
- See Also:
Gml311Package.getCoordType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BigDecimal
getX()
Returns the value of the 'X' attribute.BigDecimal
getY()
Returns the value of the 'Y' attribute.BigDecimal
getZ()
Returns the value of the 'Z' attribute.void
setX(BigDecimal value)
Sets the value of the 'X
' attribute.void
setY(BigDecimal value)
Sets the value of the 'Y
' attribute.void
setZ(BigDecimal value)
Sets the value of the 'Z
' attribute.
-
-
-
Method Detail
-
getX
BigDecimal getX()
Returns the value of the 'X' attribute.If the meaning of the 'X' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'X' attribute.
- See Also:
setX(BigDecimal)
,Gml311Package.getCoordType_X()
-
setX
void setX(BigDecimal value)
Sets the value of the 'X
' attribute.- Parameters:
value
- the new value of the 'X' attribute.- See Also:
getX()
-
getY
BigDecimal getY()
Returns the value of the 'Y' attribute.If the meaning of the 'Y' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Y' attribute.
- See Also:
setY(BigDecimal)
,Gml311Package.getCoordType_Y()
-
setY
void setY(BigDecimal value)
Sets the value of the 'Y
' attribute.- Parameters:
value
- the new value of the 'Y' attribute.- See Also:
getY()
-
getZ
BigDecimal getZ()
Returns the value of the 'Z' attribute.If the meaning of the 'Z' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Z' attribute.
- See Also:
setZ(BigDecimal)
,Gml311Package.getCoordType_Z()
-
setZ
void setZ(BigDecimal value)
Sets the value of the 'Z
' attribute.- Parameters:
value
- the new value of the 'Z' attribute.- See Also:
getZ()
-
-