Class PointByCoordinates
- java.lang.Object
-
- eu.datex2.siri14.schema._1_0._1_0.PointByCoordinates
-
- All Implemented Interfaces:
Serializable
public class PointByCoordinates extends Object implements Serializable
A single point defined only by a coordinate set with an optional bearing direction.Java class for PointByCoordinates complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PointByCoordinates"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="bearing" type="{http://datex2.eu/schema/1_0/1_0}NonNegativeInteger" minOccurs="0"/> <element name="pointCoordinates" type="{http://datex2.eu/schema/1_0/1_0}PointCoordinates"/> <element name="pointByCoordinatesExtension" type="{http://datex2.eu/schema/1_0/1_0}ExtensionType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected BigIntegerbearingprotected ExtensionTypepointByCoordinatesExtensionprotected PointCoordinatespointCoordinates
-
Constructor Summary
Constructors Constructor Description PointByCoordinates()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigIntegergetBearing()Gets the value of the bearing property.ExtensionTypegetPointByCoordinatesExtension()Gets the value of the pointByCoordinatesExtension property.PointCoordinatesgetPointCoordinates()Gets the value of the pointCoordinates property.voidsetBearing(BigInteger value)Sets the value of the bearing property.voidsetPointByCoordinatesExtension(ExtensionType value)Sets the value of the pointByCoordinatesExtension property.voidsetPointCoordinates(PointCoordinates value)Sets the value of the pointCoordinates property.
-
-
-
Field Detail
-
bearing
protected BigInteger bearing
-
pointCoordinates
protected PointCoordinates pointCoordinates
-
pointByCoordinatesExtension
protected ExtensionType pointByCoordinatesExtension
-
-
Method Detail
-
getBearing
public BigInteger getBearing()
Gets the value of the bearing property.- Returns:
- possible object is
BigInteger
-
setBearing
public void setBearing(BigInteger value)
Sets the value of the bearing property.- Parameters:
value- allowed object isBigInteger
-
getPointCoordinates
public PointCoordinates getPointCoordinates()
Gets the value of the pointCoordinates property.- Returns:
- possible object is
PointCoordinates
-
setPointCoordinates
public void setPointCoordinates(PointCoordinates value)
Sets the value of the pointCoordinates property.- Parameters:
value- allowed object isPointCoordinates
-
getPointByCoordinatesExtension
public ExtensionType getPointByCoordinatesExtension()
Gets the value of the pointByCoordinatesExtension property.- Returns:
- possible object is
ExtensionType
-
setPointByCoordinatesExtension
public void setPointByCoordinatesExtension(ExtensionType value)
Sets the value of the pointByCoordinatesExtension property.- Parameters:
value- allowed object isExtensionType
-
-