public class LOCATION extends Object
Java class for LOCATION complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="LOCATION">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<all>
<element name="LONGITUDE" type="{http://www.w3.org/2001/XMLSchema}double"/>
<element name="LATITUDE" type="{http://www.w3.org/2001/XMLSchema}double"/>
<element name="TIMEZONE">
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}double">
<pattern value="-?[0-9]*(\.[05])?"/>
<minInclusive value="-12.0"/>
<maxInclusive value="12.0"/>
</restriction>
</simpleType>
</element>
</all>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected double |
latitude |
protected double |
longitude |
protected double |
timezone |
| Constructor and Description |
|---|
LOCATION() |
| Modifier and Type | Method and Description |
|---|---|
double |
getLATITUDE()
Gets the value of the latitude property.
|
double |
getLONGITUDE()
Gets the value of the longitude property.
|
double |
getTIMEZONE()
Gets the value of the timezone property.
|
void |
setLATITUDE(double value)
Sets the value of the latitude property.
|
void |
setLONGITUDE(double value)
Sets the value of the longitude property.
|
void |
setTIMEZONE(double value)
Sets the value of the timezone property.
|
protected double longitude
protected double latitude
protected double timezone
public double getLONGITUDE()
public void setLONGITUDE(double value)
public double getLATITUDE()
public void setLATITUDE(double value)
public double getTIMEZONE()
public void setTIMEZONE(double value)
Copyright © 2019. All rights reserved.