// // 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 javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for addresspartsType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="addresspartsType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="house_number" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="road" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="suburb" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="hamlet" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="city" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="state_district" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="state" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="postcode" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="country" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="country_code" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "addresspartsType", propOrder = { "houseNumber", "road", "suburb", "hamlet", "city", "stateDistrict", "state", "postcode", "country", "countryCode" }) public class AddresspartsType { @XmlElement(name = "house_number", required = true) protected String houseNumber; @XmlElement(required = true) protected String road; @XmlElement(required = true) protected String suburb; @XmlElement(required = true) protected String hamlet; @XmlElement(required = true) protected String city; @XmlElement(name = "state_district", required = true) protected String stateDistrict; @XmlElement(required = true) protected String state; @XmlElement(required = true) protected String postcode; @XmlElement(required = true) protected String country; @XmlElement(name = "country_code", required = true) protected String countryCode; /** * Gets the value of the houseNumber property. * * @return * possible object is * {@link String } * */ public String getHouseNumber() { return houseNumber; } /** * Sets the value of the houseNumber property. * * @param value * allowed object is * {@link String } * */ public void setHouseNumber(String value) { this.houseNumber = value; } /** * Gets the value of the road property. * * @return * possible object is * {@link String } * */ public String getRoad() { return road; } /** * Sets the value of the road property. * * @param value * allowed object is * {@link String } * */ public void setRoad(String value) { this.road = value; } /** * Gets the value of the suburb property. * * @return * possible object is * {@link String } * */ public String getSuburb() { return suburb; } /** * Sets the value of the suburb property. * * @param value * allowed object is * {@link String } * */ public void setSuburb(String value) { this.suburb = value; } /** * Gets the value of the hamlet property. * * @return * possible object is * {@link String } * */ public String getHamlet() { return hamlet; } /** * Sets the value of the hamlet property. * * @param value * allowed object is * {@link String } * */ public void setHamlet(String value) { this.hamlet = value; } /** * Gets the value of the city property. * * @return * possible object is * {@link String } * */ public String getCity() { return city; } /** * Sets the value of the city property. * * @param value * allowed object is * {@link String } * */ public void setCity(String value) { this.city = value; } /** * Gets the value of the stateDistrict property. * * @return * possible object is * {@link String } * */ public String getStateDistrict() { return stateDistrict; } /** * Sets the value of the stateDistrict property. * * @param value * allowed object is * {@link String } * */ public void setStateDistrict(String value) { this.stateDistrict = value; } /** * Gets the value of the state property. * * @return * possible object is * {@link String } * */ public String getState() { return state; } /** * Sets the value of the state property. * * @param value * allowed object is * {@link String } * */ public void setState(String value) { this.state = value; } /** * Gets the value of the postcode property. * * @return * possible object is * {@link String } * */ public String getPostcode() { return postcode; } /** * Sets the value of the postcode property. * * @param value * allowed object is * {@link String } * */ public void setPostcode(String value) { this.postcode = value; } /** * Gets the value of the country property. * * @return * possible object is * {@link String } * */ public String getCountry() { return country; } /** * Sets the value of the country property. * * @param value * allowed object is * {@link String } * */ public void setCountry(String value) { this.country = value; } /** * Gets the value of the countryCode property. * * @return * possible object is * {@link String } * */ public String getCountryCode() { return countryCode; } /** * Sets the value of the countryCode property. * * @param value * allowed object is * {@link String } * */ public void setCountryCode(String value) { this.countryCode = value; } }