Class CoordinateData
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected CoordinateSystemIdentifies the coordinate system.Latitude component values of the spherical coordinate set.Local time value of the spherical coordinate set.Longitude component values of the spherical coordinate set.X component values of the Cartesion coordinate set.Y component values of the Cartesion coordinate set.Z component values of the Cartesion coordinate set. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionIdentifies the coordinate system.Latitude component values of the spherical coordinate set.Local time value of the spherical coordinate set.Longitude component values of the spherical coordinate set.getX()X component values of the Cartesion coordinate set.getY()Y component values of the Cartesion coordinate set.getZ()Z component values of the Cartesion coordinate set.voidSets the value of the coordinateSystem property.
-
Field Details
-
coordinateSystem
Identifies the coordinate system. -
x
X component values of the Cartesion coordinate set. -
y
Y component values of the Cartesion coordinate set. -
z
Z component values of the Cartesion coordinate set. -
latitude
Latitude component values of the spherical coordinate set. -
longitude
Longitude component values of the spherical coordinate set. -
localTime
Local time value of the spherical coordinate set.
-
-
Constructor Details
-
CoordinateData
public CoordinateData()
-
-
Method Details
-
getCoordinateSystem
Identifies the coordinate system.- Returns:
- possible object is
CoordinateSystem
-
setCoordinateSystem
Sets the value of the coordinateSystem property.- Parameters:
value- allowed object isCoordinateSystem- See Also:
-
getX
X component values of the Cartesion coordinate set. Gets the value of the x property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the x property.For example, to add a new item, do as follows:
getX().add(newItem);
Objects of the following type(s) are allowed in the list
Double- Returns:
- The value of the x property.
-
getY
Y component values of the Cartesion coordinate set. Gets the value of the y property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the y property.For example, to add a new item, do as follows:
getY().add(newItem);
Objects of the following type(s) are allowed in the list
Double- Returns:
- The value of the y property.
-
getZ
Z component values of the Cartesion coordinate set. Gets the value of the z property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the z property.For example, to add a new item, do as follows:
getZ().add(newItem);
Objects of the following type(s) are allowed in the list
Double- Returns:
- The value of the z property.
-
getLatitude
Latitude component values of the spherical coordinate set. Gets the value of the latitude property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the latitude property.For example, to add a new item, do as follows:
getLatitude().add(newItem);
Objects of the following type(s) are allowed in the list
Float- Returns:
- The value of the latitude property.
-
getLongitude
Longitude component values of the spherical coordinate set. Gets the value of the longitude property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the longitude property.For example, to add a new item, do as follows:
getLongitude().add(newItem);
Objects of the following type(s) are allowed in the list
Float- Returns:
- The value of the longitude property.
-
getLocalTime
Local time value of the spherical coordinate set. Gets the value of the localTime property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the localTime property.For example, to add a new item, do as follows:
getLocalTime().add(newItem);
Objects of the following type(s) are allowed in the list
Double- Returns:
- The value of the localTime property.
-