Package nl.b3p.csw.jaxb.gml
Class CoordType
- java.lang.Object
-
- nl.b3p.csw.jaxb.gml.CoordType
-
public class CoordType extends Object
Represents a coordinate tuple in one, two, or three dimensions. Deprecated with GML 3.0 and replaced by DirectPositionType.Java class for CoordType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CoordType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="X" type="{http://www.w3.org/2001/XMLSchema}decimal"/> <element name="Y" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/> <element name="Z" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected BigDecimalxprotected BigDecimalyprotected BigDecimalz
-
Constructor Summary
Constructors Constructor Description CoordType()Default no-arg constructorCoordType(BigDecimal x, BigDecimal y, BigDecimal z)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigDecimalgetX()Gets the value of the x property.BigDecimalgetY()Gets the value of the y property.BigDecimalgetZ()Gets the value of the z property.voidsetX(BigDecimal value)Sets the value of the x property.voidsetY(BigDecimal value)Sets the value of the y property.voidsetZ(BigDecimal value)Sets the value of the z property.
-
-
-
Field Detail
-
x
protected BigDecimal x
-
y
protected BigDecimal y
-
z
protected BigDecimal z
-
-
Constructor Detail
-
CoordType
public CoordType()
Default no-arg constructor
-
CoordType
public CoordType(BigDecimal x, BigDecimal y, BigDecimal z)
Fully-initialising value constructor
-
-
Method Detail
-
getX
public BigDecimal getX()
Gets the value of the x property.- Returns:
- possible object is
BigDecimal
-
setX
public void setX(BigDecimal value)
Sets the value of the x property.- Parameters:
value- allowed object isBigDecimal
-
getY
public BigDecimal getY()
Gets the value of the y property.- Returns:
- possible object is
BigDecimal
-
setY
public void setY(BigDecimal value)
Sets the value of the y property.- Parameters:
value- allowed object isBigDecimal
-
getZ
public BigDecimal getZ()
Gets the value of the z property.- Returns:
- possible object is
BigDecimal
-
setZ
public void setZ(BigDecimal value)
Sets the value of the z property.- Parameters:
value- allowed object isBigDecimal
-
-