// // 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: 2016.08.09 at 09:15:46 PM MESZ // package slash.navigation.nominatim.reverse; import java.math.BigDecimal; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** * <p>Java class for resultType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="resultType"> * <simpleContent> * <extension base="<http://www.w3.org/2001/XMLSchema>string"> * <attribute name="place_id" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <attribute name="osm_type" type="{http://www.w3.org/2001/XMLSchema}string"/> * <attribute name="osm_id" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <attribute name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <attribute name="lon" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * <attribute name="boundingbox" type="{http://www.w3.org/2001/XMLSchema}string"/> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "resultType", propOrder = { "value" }) public class ResultType { @XmlValue protected String value; @XmlAttribute(name = "place_id") protected BigDecimal placeId; @XmlAttribute(name = "osm_type") protected String osmType; @XmlAttribute(name = "osm_id") protected BigDecimal osmId; @XmlAttribute protected BigDecimal lat; @XmlAttribute protected BigDecimal lon; @XmlAttribute protected String boundingbox; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the placeId property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getPlaceId() { return placeId; } /** * Sets the value of the placeId property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setPlaceId(BigDecimal value) { this.placeId = value; } /** * Gets the value of the osmType property. * * @return * possible object is * {@link String } * */ public String getOsmType() { return osmType; } /** * Sets the value of the osmType property. * * @param value * allowed object is * {@link String } * */ public void setOsmType(String value) { this.osmType = value; } /** * Gets the value of the osmId property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getOsmId() { return osmId; } /** * Sets the value of the osmId property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setOsmId(BigDecimal value) { this.osmId = value; } /** * 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 lon property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getLon() { return lon; } /** * Sets the value of the lon property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setLon(BigDecimal value) { this.lon = value; } /** * Gets the value of the boundingbox property. * * @return * possible object is * {@link String } * */ public String getBoundingbox() { return boundingbox; } /** * Sets the value of the boundingbox property. * * @param value * allowed object is * {@link String } * */ public void setBoundingbox(String value) { this.boundingbox = value; } }