Class AddressType
- java.lang.Object
-
- nl.b3p.csw.jaxb.ows.AddressType
-
public class AddressType extends Object
Location of the responsible individual or organization.Java class for AddressType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AddressType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="DeliveryPoint" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="City" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="AdministrativeArea" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="PostalCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="Country" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="ElectronicMailAddress" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringadministrativeAreaprotected Stringcityprotected Stringcountryprotected List<String>deliveryPointprotected List<String>electronicMailAddressprotected StringpostalCode
-
Constructor Summary
Constructors Constructor Description AddressType()Default no-arg constructorAddressType(List<String> deliveryPoint, String city, String administrativeArea, String postalCode, String country, List<String> electronicMailAddress)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAdministrativeArea()Gets the value of the administrativeArea property.StringgetCity()Gets the value of the city property.StringgetCountry()Gets the value of the country property.List<String>getDeliveryPoint()Gets the value of the deliveryPoint property.List<String>getElectronicMailAddress()Gets the value of the electronicMailAddress property.StringgetPostalCode()Gets the value of the postalCode property.voidsetAdministrativeArea(String value)Sets the value of the administrativeArea property.voidsetCity(String value)Sets the value of the city property.voidsetCountry(String value)Sets the value of the country property.voidsetPostalCode(String value)Sets the value of the postalCode property.
-
-
-
Method Detail
-
getDeliveryPoint
public List<String> getDeliveryPoint()
Gets the value of the deliveryPoint property.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
setmethod for the deliveryPoint property.For example, to add a new item, do as follows:
getDeliveryPoint().add(newItem);Objects of the following type(s) are allowed in the list
String
-
getCity
public String getCity()
Gets the value of the city property.- Returns:
- possible object is
String
-
setCity
public void setCity(String value)
Sets the value of the city property.- Parameters:
value- allowed object isString
-
getAdministrativeArea
public String getAdministrativeArea()
Gets the value of the administrativeArea property.- Returns:
- possible object is
String
-
setAdministrativeArea
public void setAdministrativeArea(String value)
Sets the value of the administrativeArea property.- Parameters:
value- allowed object isString
-
getPostalCode
public String getPostalCode()
Gets the value of the postalCode property.- Returns:
- possible object is
String
-
setPostalCode
public void setPostalCode(String value)
Sets the value of the postalCode property.- Parameters:
value- allowed object isString
-
getCountry
public String getCountry()
Gets the value of the country property.- Returns:
- possible object is
String
-
setCountry
public void setCountry(String value)
Sets the value of the country property.- Parameters:
value- allowed object isString
-
getElectronicMailAddress
public List<String> getElectronicMailAddress()
Gets the value of the electronicMailAddress property.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
setmethod for the electronicMailAddress property.For example, to add a new item, do as follows:
getElectronicMailAddress().add(newItem);Objects of the following type(s) are allowed in the list
String
-
-