| Modifier and Type | Class and Description |
|---|---|
static class |
Department.DepartmentName |
| Modifier and Type | Field and Description |
|---|---|
protected List<AddressLine> |
addressLine |
protected List<Object> |
any |
protected List<Department.DepartmentName> |
departmentName |
protected MailStop |
mailStop |
protected PostalCode |
postalCode |
protected String |
underscore |
| Constructor and Description |
|---|
Department() |
| Modifier and Type | Method and Description |
|---|---|
Department |
addToAddressLine(AddressLine addressLine)
add a value to the addressLine property collection
|
Department |
addToAny(Object any)
add a value to the any property collection
|
Department |
addToDepartmentName(Department.DepartmentName departmentName)
add a value to the departmentName property collection
|
Department |
clone() |
AddressLine |
createAndAddAddressLine()
Creates a new instance of
AddressLine and adds it to addressLine. |
Department.DepartmentName |
createAndAddDepartmentName()
Creates a new instance of
Department.DepartmentName and adds it to departmentName. |
MailStop |
createAndSetMailStop()
Creates a new instance of
MailStop and set it to mailStop. |
PostalCode |
createAndSetPostalCode()
Creates a new instance of
PostalCode and set it to postalCode. |
boolean |
equals(Object obj) |
List<AddressLine> |
getAddressLine() |
List<Object> |
getAny() |
List<Department.DepartmentName> |
getDepartmentName() |
MailStop |
getMailStop() |
Map<QName,String> |
getOtherAttributes() |
PostalCode |
getPostalCode() |
String |
getUnderscore() |
int |
hashCode() |
void |
setAddressLine(List<AddressLine> addressLine)
Sets the value of the addressLine property Objects of the following type(s) are allowed in the list List
|
void |
setAny(List<Object> any)
Sets the value of the any property Objects of the following type(s) are allowed in the list List
|
void |
setDepartmentName(List<Department.DepartmentName> departmentName)
Sets the value of the departmentName property Objects of the following type(s) are allowed in the list List
|
void |
setMailStop(MailStop value) |
void |
setPostalCode(PostalCode value) |
void |
setUnderscore(String value) |
Department |
withAddressLine(List<AddressLine> addressLine)
fluent setter
|
Department |
withAny(List<Object> any)
fluent setter
|
Department |
withDepartmentName(List<Department.DepartmentName> departmentName)
fluent setter
|
Department |
withMailStop(MailStop mailStop)
fluent setter
|
Department |
withPostalCode(PostalCode postalCode)
fluent setter
|
Department |
withUnderscore(String underscore)
fluent setter
|
protected List<AddressLine> addressLine
protected List<Department.DepartmentName> departmentName
protected MailStop mailStop
protected PostalCode postalCode
protected String underscore
public List<AddressLine> getAddressLine()
public List<Department.DepartmentName> getDepartmentName()
public PostalCode getPostalCode()
PostalCodepublic void setPostalCode(PostalCode value)
value - allowed object is
PostalCodepublic AddressLine createAndAddAddressLine()
AddressLine and adds it to addressLine.
This method is a short version for:
AddressLine addressLine = new AddressLine();
this.getAddressLine().add(addressLine); public Department.DepartmentName createAndAddDepartmentName()
Department.DepartmentName and adds it to departmentName.
This method is a short version for:
DepartmentName departmentName = new DepartmentName();
this.getDepartmentName().add(departmentName); public MailStop createAndSetMailStop()
MailStop and set it to mailStop.
This method is a short version for:
MailStop mailStop = new MailStop();
this.setMailStop(mailStop); public PostalCode createAndSetPostalCode()
PostalCode and set it to postalCode.
This method is a short version for:
PostalCode postalCode = new PostalCode();
this.setPostalCode(postalCode); public void setAddressLine(List<AddressLine> addressLine)
Note:
This method does not make use of the fluent pattern.If you would like to make it fluent, use withAddressLine(java.util.List<de.micromata.opengis.kml.v_2_2_0.xal.AddressLine>) instead.
addressLine - public Department addToAddressLine(AddressLine addressLine)
addressLine - Objects of the following type are allowed in the list: AddressLinepublic void setDepartmentName(List<Department.DepartmentName> departmentName)
Note:
This method does not make use of the fluent pattern.If you would like to make it fluent, use withDepartmentName(java.util.List<de.micromata.opengis.kml.v_2_2_0.xal.Department.DepartmentName>) instead.
departmentName - public Department addToDepartmentName(Department.DepartmentName departmentName)
departmentName - Objects of the following type are allowed in the list: Department.DepartmentNamepublic void setAny(List<Object> any)
any - public Department addToAny(Object any)
any - Objects of the following type are allowed in the list: Objectpublic Department withAddressLine(List<AddressLine> addressLine)
addressLine - required parameter#setAddressLine(List) public Department withDepartmentName(List<Department.DepartmentName> departmentName)
departmentName - required parameter#setDepartmentName(List) public Department withMailStop(MailStop mailStop)
mailStop - required parametersetMailStop(MailStop)public Department withPostalCode(PostalCode postalCode)
postalCode - required parametersetPostalCode(PostalCode)public Department withAny(List<Object> any)
any - required parameter#setAny(Listpublic Department withUnderscore(String underscore)
underscore - required parametersetUnderscore(String)public Department clone()
Copyright © 2014 Micromata GmbH. All rights reserved.