// // 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.07.23 at 10:21:30 PM MESZ // package slash.navigation.nominatim.search; 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 placeType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="placeType"> * <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="place_rank" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * <attribute name="boundingbox" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="lat" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * <attribute name="lon" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * <attribute name="display_name" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="class" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="importance" type="{http://www.w3.org/2001/XMLSchema}decimal" /> * <attribute name="icon" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "placeType", propOrder = { "value" }) public class PlaceType { @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(name = "place_rank") protected BigDecimal placeRank; @XmlAttribute protected String boundingbox; @XmlAttribute protected BigDecimal lat; @XmlAttribute protected BigDecimal lon; @XmlAttribute(name = "display_name") protected String displayName; @XmlAttribute(name = "class") protected String clazz; @XmlAttribute protected String type; @XmlAttribute protected BigDecimal importance; @XmlAttribute protected String icon; /** * 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 placeRank property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getPlaceRank() { return placeRank; } /** * Sets the value of the placeRank property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setPlaceRank(BigDecimal value) { this.placeRank = 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; } /** * 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 displayName property. * * @return * possible object is * {@link String } * */ public String getDisplayName() { return displayName; } /** * Sets the value of the displayName property. * * @param value * allowed object is * {@link String } * */ public void setDisplayName(String value) { this.displayName = value; } /** * Gets the value of the clazz property. * * @return * possible object is * {@link String } * */ public String getClazz() { return clazz; } /** * Sets the value of the clazz property. * * @param value * allowed object is * {@link String } * */ public void setClazz(String value) { this.clazz = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the importance property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getImportance() { return importance; } /** * Sets the value of the importance property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setImportance(BigDecimal value) { this.importance = value; } /** * Gets the value of the icon property. * * @return * possible object is * {@link String } * */ public String getIcon() { return icon; } /** * Sets the value of the icon property. * * @param value * allowed object is * {@link String } * */ public void setIcon(String value) { this.icon = value; } }