Package org.bremersee.gpx.model
Class PtType
java.lang.Object
org.bremersee.gpx.model.PtType
- All Implemented Interfaces:
Serializable
A geographic point with optional elevation and time. Available for use by other schemas.
Java class for ptType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ptType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="ele" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
<element name="time" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
</sequence>
<attribute name="lat" use="required" type="{http://www.topografix.com/GPX/1/1}latitudeType" />
<attribute name="lon" use="required" type="{http://www.topografix.com/GPX/1/1}longitudeType" />
</restriction>
</complexContent>
</complexType>
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected BigDecimalprotected BigDecimalprotected BigDecimalprotected XMLGregorianCalendar -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetEle()Gets the value of the ele property.getLat()Gets the value of the lat property.getLon()Gets the value of the lon property.getTime()Gets the value of the time property.voidsetEle(BigDecimal value) Sets the value of the ele property.voidsetLat(BigDecimal value) Sets the value of the lat property.voidsetLon(BigDecimal value) Sets the value of the lon property.voidsetTime(XMLGregorianCalendar value) Sets the value of the time property.
-
Field Details
-
ele
-
time
-
lat
-
lon
-
-
Constructor Details
-
PtType
public PtType()
-
-
Method Details
-
getEle
Gets the value of the ele property.- Returns:
- possible object is
BigDecimal
-
setEle
Sets the value of the ele property.- Parameters:
value- allowed object isBigDecimal
-
getTime
Gets the value of the time property.- Returns:
- possible object is
XMLGregorianCalendar
-
setTime
Sets the value of the time property.- Parameters:
value- allowed object isXMLGregorianCalendar
-
getLat
Gets the value of the lat property.- Returns:
- possible object is
BigDecimal
-
setLat
Sets the value of the lat property.- Parameters:
value- allowed object isBigDecimal
-
getLon
Gets the value of the lon property.- Returns:
- possible object is
BigDecimal
-
setLon
Sets the value of the lon property.- Parameters:
value- allowed object isBigDecimal
-