Class Address
-
- All Implemented Interfaces:
public class Address
The 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 String
getCareOf()
Gets the value of the careOf property. void
setCareOf(String value)
Sets the value of the careOf property. String
getStreet()
Gets the value of the street property. void
setStreet(String value)
Sets the value of the street property. String
getZipCode()
Gets the value of the zipCode property. void
setZipCode(String value)
Sets the value of the zipCode property. String
getCity()
Gets the value of the city property. void
setCity(String value)
Sets the value of the city property. String
getState()
Gets the value of the state property. void
setState(String value)
Sets the value of the state property. Country
getCountry()
Gets the value of the country property. void
setCountry(Country value)
Sets the value of the country property. String
getType()
The address type, e.g. void
setType(String value)
Sets the value of the type property. XMLGregorianCalendar
getModifyTime()
Gets the value of the modifyTime property. void
setModifyTime(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
-
-
-
-