public class AddressType extends Object
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>
| Modifier and Type | Field and Description |
|---|---|
protected String |
administrativeArea |
protected String |
city |
protected String |
country |
protected List<String> |
deliveryPoint |
protected List<String> |
electronicMailAddress |
protected String |
postalCode |
| Constructor and Description |
|---|
AddressType()
Default no-arg constructor
|
AddressType(List<String> deliveryPoint,
String city,
String administrativeArea,
String postalCode,
String country,
List<String> electronicMailAddress)
Fully-initialising value constructor
|
| Modifier and Type | Method and Description |
|---|---|
String |
getAdministrativeArea()
Gets the value of the administrativeArea property.
|
String |
getCity()
Gets the value of the city property.
|
String |
getCountry()
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.
|
String |
getPostalCode()
Gets the value of the postalCode property.
|
void |
setAdministrativeArea(String value)
Sets the value of the administrativeArea property.
|
void |
setCity(String value)
Sets the value of the city property.
|
void |
setCountry(String value)
Sets the value of the country property.
|
void |
setPostalCode(String value)
Sets the value of the postalCode property.
|
protected String city
protected String administrativeArea
protected String postalCode
protected String country
public List<String> getDeliveryPoint()
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 set method 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
public String getCity()
Stringpublic void setCity(String value)
value - allowed object is
Stringpublic String getAdministrativeArea()
Stringpublic void setAdministrativeArea(String value)
value - allowed object is
Stringpublic String getPostalCode()
Stringpublic void setPostalCode(String value)
value - allowed object is
Stringpublic String getCountry()
Stringpublic void setCountry(String value)
value - allowed object is
Stringpublic List<String> getElectronicMailAddress()
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 set method 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
Copyright © 2016. All rights reserved.