// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.11.25 at 04:56:34 PM CET // package slash.navigation.googlemaps.geocode; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="result" maxOccurs="unbounded"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> * <element name="formatted_address" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="address_component" maxOccurs="unbounded"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="long_name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="short_name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="geometry"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="location"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="location_type" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="viewport"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="southwest"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="northeast"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="bounds" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="southwest"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="northeast"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "status", "result" }) @XmlRootElement(name = "GeocodeResponse") public class GeocodeResponse { @XmlElement(required = true) protected String status; @XmlElement(required = true) protected List<GeocodeResponse.Result> result; /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } /** * Gets the value of the result property. * * <p> * 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 JAXB object. * This is why there is not a <CODE>set</CODE> method for the result property. * * <p> * For example, to add a new item, do as follows: * <pre> * getResult().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link GeocodeResponse.Result } * * */ public List<GeocodeResponse.Result> getResult() { if (result == null) { result = new ArrayList<>(); } return this.result; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> * <element name="formatted_address" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="address_component" maxOccurs="unbounded"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="long_name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="short_name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="geometry"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="location"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="location_type" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="viewport"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="southwest"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="northeast"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="bounds" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="southwest"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="northeast"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "type", "formattedAddress", "addressComponent", "geometry" }) public static class Result { @XmlElement(required = true) protected List<String> type; @XmlElement(name = "formatted_address", required = true) protected String formattedAddress; @XmlElement(name = "address_component", required = true) protected List<GeocodeResponse.Result.AddressComponent> addressComponent; @XmlElement(required = true) protected GeocodeResponse.Result.Geometry geometry; /** * Gets the value of the type property. * * <p> * 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 JAXB object. * This is why there is not a <CODE>set</CODE> method for the type property. * * <p> * For example, to add a new item, do as follows: * <pre> * getType().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getType() { if (type == null) { type = new ArrayList<>(); } return this.type; } /** * Gets the value of the formattedAddress property. * * @return * possible object is * {@link String } * */ public String getFormattedAddress() { return formattedAddress; } /** * Sets the value of the formattedAddress property. * * @param value * allowed object is * {@link String } * */ public void setFormattedAddress(String value) { this.formattedAddress = value; } /** * Gets the value of the addressComponent property. * * <p> * 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 JAXB object. * This is why there is not a <CODE>set</CODE> method for the addressComponent property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAddressComponent().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link GeocodeResponse.Result.AddressComponent } * * */ public List<GeocodeResponse.Result.AddressComponent> getAddressComponent() { if (addressComponent == null) { addressComponent = new ArrayList<>(); } return this.addressComponent; } /** * Gets the value of the geometry property. * * @return * possible object is * {@link GeocodeResponse.Result.Geometry } * */ public GeocodeResponse.Result.Geometry getGeometry() { return geometry; } /** * Sets the value of the geometry property. * * @param value * allowed object is * {@link GeocodeResponse.Result.Geometry } * */ public void setGeometry(GeocodeResponse.Result.Geometry value) { this.geometry = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="long_name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="short_name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "longName", "shortName", "type" }) public static class AddressComponent { @XmlElement(name = "long_name", required = true) protected String longName; @XmlElement(name = "short_name", required = true) protected String shortName; @XmlElement(required = true) protected List<String> type; /** * Gets the value of the longName property. * * @return * possible object is * {@link String } * */ public String getLongName() { return longName; } /** * Sets the value of the longName property. * * @param value * allowed object is * {@link String } * */ public void setLongName(String value) { this.longName = value; } /** * Gets the value of the shortName property. * * @return * possible object is * {@link String } * */ public String getShortName() { return shortName; } /** * Sets the value of the shortName property. * * @param value * allowed object is * {@link String } * */ public void setShortName(String value) { this.shortName = value; } /** * Gets the value of the type property. * * <p> * 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 JAXB object. * This is why there is not a <CODE>set</CODE> method for the type property. * * <p> * For example, to add a new item, do as follows: * <pre> * getType().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getType() { if (type == null) { type = new ArrayList<>(); } return this.type; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="location"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="location_type" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="viewport"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="southwest"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="northeast"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="bounds" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="southwest"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="northeast"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "location", "locationType", "viewport", "bounds" }) public static class Geometry { @XmlElement(required = true) protected GeocodeResponse.Result.Geometry.Location location; @XmlElement(name = "location_type", required = true) protected String locationType; @XmlElement(required = true) protected GeocodeResponse.Result.Geometry.Viewport viewport; protected GeocodeResponse.Result.Geometry.Bounds bounds; /** * Gets the value of the location property. * * @return * possible object is * {@link GeocodeResponse.Result.Geometry.Location } * */ public GeocodeResponse.Result.Geometry.Location getLocation() { return location; } /** * Sets the value of the location property. * * @param value * allowed object is * {@link GeocodeResponse.Result.Geometry.Location } * */ public void setLocation(GeocodeResponse.Result.Geometry.Location value) { this.location = value; } /** * Gets the value of the locationType property. * * @return * possible object is * {@link String } * */ public String getLocationType() { return locationType; } /** * Sets the value of the locationType property. * * @param value * allowed object is * {@link String } * */ public void setLocationType(String value) { this.locationType = value; } /** * Gets the value of the viewport property. * * @return * possible object is * {@link GeocodeResponse.Result.Geometry.Viewport } * */ public GeocodeResponse.Result.Geometry.Viewport getViewport() { return viewport; } /** * Sets the value of the viewport property. * * @param value * allowed object is * {@link GeocodeResponse.Result.Geometry.Viewport } * */ public void setViewport(GeocodeResponse.Result.Geometry.Viewport value) { this.viewport = value; } /** * Gets the value of the bounds property. * * @return * possible object is * {@link GeocodeResponse.Result.Geometry.Bounds } * */ public GeocodeResponse.Result.Geometry.Bounds getBounds() { return bounds; } /** * Sets the value of the bounds property. * * @param value * allowed object is * {@link GeocodeResponse.Result.Geometry.Bounds } * */ public void setBounds(GeocodeResponse.Result.Geometry.Bounds value) { this.bounds = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="southwest"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="northeast"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "southwest", "northeast" }) public static class Bounds { @XmlElement(required = true) protected GeocodeResponse.Result.Geometry.Bounds.Southwest southwest; @XmlElement(required = true) protected GeocodeResponse.Result.Geometry.Bounds.Northeast northeast; /** * Gets the value of the southwest property. * * @return * possible object is * {@link GeocodeResponse.Result.Geometry.Bounds.Southwest } * */ public GeocodeResponse.Result.Geometry.Bounds.Southwest getSouthwest() { return southwest; } /** * Sets the value of the southwest property. * * @param value * allowed object is * {@link GeocodeResponse.Result.Geometry.Bounds.Southwest } * */ public void setSouthwest(GeocodeResponse.Result.Geometry.Bounds.Southwest value) { this.southwest = value; } /** * Gets the value of the northeast property. * * @return * possible object is * {@link GeocodeResponse.Result.Geometry.Bounds.Northeast } * */ public GeocodeResponse.Result.Geometry.Bounds.Northeast getNortheast() { return northeast; } /** * Sets the value of the northeast property. * * @param value * allowed object is * {@link GeocodeResponse.Result.Geometry.Bounds.Northeast } * */ public void setNortheast(GeocodeResponse.Result.Geometry.Bounds.Northeast value) { this.northeast = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "lat", "lng" }) public static class Northeast { @XmlElement(required = true) protected BigDecimal lat; @XmlElement(required = true) protected BigDecimal lng; /** * Gets the value of the lat property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getLat() { return lat; } /** * Sets the value of the lat property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setLat(BigDecimal value) { this.lat = value; } /** * Gets the value of the lng property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getLng() { return lng; } /** * Sets the value of the lng property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setLng(BigDecimal value) { this.lng = value; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "lat", "lng" }) public static class Southwest { @XmlElement(required = true) protected BigDecimal lat; @XmlElement(required = true) protected BigDecimal lng; /** * Gets the value of the lat property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getLat() { return lat; } /** * Sets the value of the lat property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setLat(BigDecimal value) { this.lat = value; } /** * Gets the value of the lng property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getLng() { return lng; } /** * Sets the value of the lng property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setLng(BigDecimal value) { this.lng = value; } } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "lat", "lng" }) public static class Location { @XmlElement(required = true) protected BigDecimal lat; @XmlElement(required = true) protected BigDecimal lng; /** * Gets the value of the lat property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getLat() { return lat; } /** * Sets the value of the lat property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setLat(BigDecimal value) { this.lat = value; } /** * Gets the value of the lng property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getLng() { return lng; } /** * Sets the value of the lng property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setLng(BigDecimal value) { this.lng = value; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="southwest"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="northeast"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "southwest", "northeast" }) public static class Viewport { @XmlElement(required = true) protected GeocodeResponse.Result.Geometry.Viewport.Southwest southwest; @XmlElement(required = true) protected GeocodeResponse.Result.Geometry.Viewport.Northeast northeast; /** * Gets the value of the southwest property. * * @return * possible object is * {@link GeocodeResponse.Result.Geometry.Viewport.Southwest } * */ public GeocodeResponse.Result.Geometry.Viewport.Southwest getSouthwest() { return southwest; } /** * Sets the value of the southwest property. * * @param value * allowed object is * {@link GeocodeResponse.Result.Geometry.Viewport.Southwest } * */ public void setSouthwest(GeocodeResponse.Result.Geometry.Viewport.Southwest value) { this.southwest = value; } /** * Gets the value of the northeast property. * * @return * possible object is * {@link GeocodeResponse.Result.Geometry.Viewport.Northeast } * */ public GeocodeResponse.Result.Geometry.Viewport.Northeast getNortheast() { return northeast; } /** * Sets the value of the northeast property. * * @param value * allowed object is * {@link GeocodeResponse.Result.Geometry.Viewport.Northeast } * */ public void setNortheast(GeocodeResponse.Result.Geometry.Viewport.Northeast value) { this.northeast = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "lat", "lng" }) public static class Northeast { @XmlElement(required = true) protected BigDecimal lat; @XmlElement(required = true) protected BigDecimal lng; /** * Gets the value of the lat property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getLat() { return lat; } /** * Sets the value of the lat property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setLat(BigDecimal value) { this.lat = value; } /** * Gets the value of the lng property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getLng() { return lng; } /** * Sets the value of the lng property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setLng(BigDecimal value) { this.lng = value; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <element name="lng" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "lat", "lng" }) public static class Southwest { @XmlElement(required = true) protected BigDecimal lat; @XmlElement(required = true) protected BigDecimal lng; /** * Gets the value of the lat property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getLat() { return lat; } /** * Sets the value of the lat property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setLat(BigDecimal value) { this.lat = value; } /** * Gets the value of the lng property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getLng() { return lng; } /** * Sets the value of the lng property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setLng(BigDecimal value) { this.lng = value; } } } } } }