| Modifier and Type | Class and Description |
|---|---|
static class |
Firm.FirmName |
| Modifier and Type | Field and Description |
|---|---|
protected List<AddressLine> |
addressLine |
protected List<Object> |
any |
protected List<Department> |
department |
protected List<Firm.FirmName> |
firmName |
protected MailStop |
mailStop |
protected PostalCode |
postalCode |
protected String |
underscore |
| Constructor and Description |
|---|
Firm() |
| Modifier and Type | Method and Description |
|---|---|
Firm |
addToAddressLine(AddressLine addressLine)
add a value to the addressLine property collection
|
Firm |
addToAny(Object any)
add a value to the any property collection
|
Firm |
addToDepartment(Department department)
add a value to the department property collection
|
Firm |
addToFirmName(Firm.FirmName firmName)
add a value to the firmName property collection
|
Firm |
clone() |
AddressLine |
createAndAddAddressLine()
Creates a new instance of
AddressLine and adds it to addressLine. |
Department |
createAndAddDepartment()
Creates a new instance of
Department and adds it to department. |
Firm.FirmName |
createAndAddFirmName()
Creates a new instance of
Firm.FirmName and adds it to firmName. |
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> |
getDepartment() |
List<Firm.FirmName> |
getFirmName() |
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 |
setDepartment(List<Department> department)
Sets the value of the department property Objects of the following type(s) are allowed in the list List
|
void |
setFirmName(List<Firm.FirmName> firmName)
Sets the value of the firmName 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) |
Firm |
withAddressLine(List<AddressLine> addressLine)
fluent setter
|
Firm |
withAny(List<Object> any)
fluent setter
|
Firm |
withDepartment(List<Department> department)
fluent setter
|
Firm |
withFirmName(List<Firm.FirmName> firmName)
fluent setter
|
Firm |
withMailStop(MailStop mailStop)
fluent setter
|
Firm |
withPostalCode(PostalCode postalCode)
fluent setter
|
Firm |
withUnderscore(String underscore)
fluent setter
|
protected List<AddressLine> addressLine
protected List<Firm.FirmName> firmName
protected List<Department> department
protected MailStop mailStop
protected PostalCode postalCode
protected String underscore
public List<AddressLine> getAddressLine()
public List<Firm.FirmName> getFirmName()
public List<Department> getDepartment()
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 Firm.FirmName createAndAddFirmName()
Firm.FirmName and adds it to firmName.
This method is a short version for:
FirmName firmName = new FirmName();
this.getFirmName().add(firmName); public Department createAndAddDepartment()
Department and adds it to department.
This method is a short version for:
Department department = new Department();
this.getDepartment().add(department); 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 Firm addToAddressLine(AddressLine addressLine)
addressLine - Objects of the following type are allowed in the list: AddressLinepublic void setFirmName(List<Firm.FirmName> firmName)
Note:
This method does not make use of the fluent pattern.If you would like to make it fluent, use withFirmName(java.util.List<de.micromata.opengis.kml.v_2_2_0.xal.Firm.FirmName>) instead.
firmName - public Firm addToFirmName(Firm.FirmName firmName)
firmName - Objects of the following type are allowed in the list: Firm.FirmNamepublic void setDepartment(List<Department> department)
Note:
This method does not make use of the fluent pattern.If you would like to make it fluent, use withDepartment(java.util.List<de.micromata.opengis.kml.v_2_2_0.xal.Department>) instead.
department - public Firm addToDepartment(Department department)
department - Objects of the following type are allowed in the list: Departmentpublic void setAny(List<Object> any)
any - public Firm addToAny(Object any)
any - Objects of the following type are allowed in the list: Objectpublic Firm withAddressLine(List<AddressLine> addressLine)
addressLine - required parameter#setAddressLine(List) public Firm withFirmName(List<Firm.FirmName> firmName)
firmName - required parameter#setFirmName(List) public Firm withDepartment(List<Department> department)
department - required parameter#setDepartment(List) public Firm withMailStop(MailStop mailStop)
mailStop - required parametersetMailStop(MailStop)public Firm withPostalCode(PostalCode postalCode)
postalCode - required parametersetPostalCode(PostalCode)public Firm withAny(List<Object> any)
any - required parameter#setAny(Listpublic Firm withUnderscore(String underscore)
underscore - required parametersetUnderscore(String)Copyright © 2014 Micromata GmbH. All rights reserved.