Class Address
-
- All Implemented Interfaces:
public class AddressThe postal address of a person or organisation.
Java class for Address complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="Address"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="CareOf" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="Street" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="ZipCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="City" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="State" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="Country" type="{http://www.orienteering.org/datastandard/3.0}Country" minOccurs="0"/> </sequence> <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="modifyTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Address()
-
Method Summary
Modifier and Type Method Description StringgetCareOf()Gets the value of the careOf property. voidsetCareOf(String value)Sets the value of the careOf property. StringgetStreet()Gets the value of the street property. voidsetStreet(String value)Sets the value of the street property. StringgetZipCode()Gets the value of the zipCode property. voidsetZipCode(String value)Sets the value of the zipCode property. StringgetCity()Gets the value of the city property. voidsetCity(String value)Sets the value of the city property. StringgetState()Gets the value of the state property. voidsetState(String value)Sets the value of the state property. CountrygetCountry()Gets the value of the country property. voidsetCountry(Country value)Sets the value of the country property. StringgetType()The address type, e.g. voidsetType(String value)Sets the value of the type property. XMLGregorianCalendargetModifyTime()Gets the value of the modifyTime property. voidsetModifyTime(XMLGregorianCalendar value)Sets the value of the modifyTime property. -
-
Method Detail
-
getCareOf
String getCareOf()
Gets the value of the careOf property.
- Returns:
possibleobject is String
-
setCareOf
void setCareOf(String value)
Sets the value of the careOf property.
- Parameters:
value- allowed object is String
-
getStreet
String getStreet()
Gets the value of the street property.
- Returns:
possibleobject is String
-
setStreet
void setStreet(String value)
Sets the value of the street property.
- Parameters:
value- allowed object is String
-
getZipCode
String getZipCode()
Gets the value of the zipCode property.
- Returns:
possibleobject is String
-
setZipCode
void setZipCode(String value)
Sets the value of the zipCode property.
- Parameters:
value- allowed object is String
-
setCity
void setCity(String value)
Sets the value of the city property.
- Parameters:
value- allowed object is String
-
setState
void setState(String value)
Sets the value of the state property.
- Parameters:
value- allowed object is String
-
getCountry
Country getCountry()
Gets the value of the country property.
- Returns:
possibleobject is Country
-
setCountry
void setCountry(Country value)
Sets the value of the country property.
- Parameters:
value- allowed object is Country
-
getType
String getType()
The address type, e.g. visitor address or invoice address.
- Returns:
possibleobject is String
-
setType
void setType(String value)
Sets the value of the type property.
- Parameters:
value- allowed object is String
-
getModifyTime
XMLGregorianCalendar getModifyTime()
Gets the value of the modifyTime property.
- Returns:
possibleobject is XMLGregorianCalendar
-
setModifyTime
void setModifyTime(XMLGregorianCalendar value)
Sets the value of the modifyTime property.
- Parameters:
value- allowed object is XMLGregorianCalendar
-
-
-
-