Geocode

public class Geocode extends AbstractID

Java class for geocode complex type.

The following schema fragment specifies the expected content contained within this class.

<complexType name="geocode">
  <complexContent>
    <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
      <sequence>
        <element name="latitude" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
        <element name="longitude" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
        <element name="altitude" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
        <element name="coordinateSystem" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
      </sequence>
    </restriction>
  </complexContent>
</complexType>

Constructors

Geocode

public Geocode()

Geocode

public Geocode(double latitude, double longitude)

Geocode

public Geocode(double latitude, double longitude, double altitude, String coordinateSystem)

Methods

equals

public boolean equals(Object o)

getAltitude

public double getAltitude()

getCoordinateSystem

public String getCoordinateSystem()

getLatitude

public double getLatitude()

getLongitude

public double getLongitude()

hashCode

public int hashCode()

setAltitude

public void setAltitude(double altitude)

setCoordinateSystem

public void setCoordinateSystem(String coordinateSystem)

setLatitude

public void setLatitude(double latitude)

setLongitude

public void setLongitude(double longitude)

toString

public String toString()