Package com.luciad.format.gml2.model
Class TLcdGML2Coord
java.lang.Object
com.luciad.datamodel.TLcdDataObject
com.luciad.datamodel.TLcdFeaturedDataObject
com.luciad.format.gml2.model.TLcdGML2Coord
- All Implemented Interfaces:
ILcdDataObject
,ILcdCloneable
,ILcdDeepCloneable
,ILcdFeatured
,ILcdSelfDescribedFeatured
,Serializable
,Cloneable
Represents a coordinate tuple in one, two, or three dimensions.
- Since:
- 10.0
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final TLcdDataProperty
Data property that maps to theX
element.static final TLcdDataProperty
Data property that maps to theY
element.static final TLcdDataProperty
Data property that maps to theZ
element. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiondouble
getX()
Returns the value of the property that maps to theX
element.getY()
Returns the value of the property that maps to theY
element.getZ()
Returns the value of the property that maps to theZ
element.void
setX
(double aValue) Sets the value of the property that maps to theX
element.void
Sets the value of the property that maps to theY
element.void
Sets the value of the property that maps to theZ
element.Methods inherited from class com.luciad.datamodel.TLcdFeaturedDataObject
canSetFeature, getFeature, getFeature, getFeatureCount, getFeaturedDescriptor, setFeature, setFeature
-
Field Details
-
X_PROPERTY
Data property that maps to theX
element. The possible values for this property are instances ofdouble
. -
Y_PROPERTY
Data property that maps to theY
element. The possible values for this property are instances ofDouble
. -
Z_PROPERTY
Data property that maps to theZ
element. The possible values for this property are instances ofDouble
.
-
-
Constructor Details
-
TLcdGML2Coord
public TLcdGML2Coord() -
TLcdGML2Coord
-
-
Method Details
-
getX
public double getX()Returns the value of the property that maps to theX
element.- Returns:
- the value of the
X_PROPERTY
property.
-
setX
public void setX(double aValue) Sets the value of the property that maps to theX
element.- Parameters:
aValue
- the value to set for theX_PROPERTY
property.
-
getY
Returns the value of the property that maps to theY
element.- Returns:
- the value of the
Y_PROPERTY
property.
-
setY
Sets the value of the property that maps to theY
element.- Parameters:
aValue
- the value to set for theY_PROPERTY
property.
-
getZ
Returns the value of the property that maps to theZ
element.- Returns:
- the value of the
Z_PROPERTY
property.
-
setZ
Sets the value of the property that maps to theZ
element.- Parameters:
aValue
- the value to set for theZ_PROPERTY
property.
-