|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectde.micromata.opengis.kml.v_2_2_0.xal.Firm
public class Firm
Nested Class Summary | |
---|---|
static class |
Firm.FirmName
|
Field Summary | |
---|---|
protected java.util.List<AddressLine> |
addressLine
|
protected java.util.List<java.lang.Object> |
any
|
protected java.util.List<Department> |
department
|
protected java.util.List<Firm.FirmName> |
firmName
|
protected MailStop |
mailStop
|
protected PostalCode |
postalCode
|
protected java.lang.String |
underscore
|
Constructor Summary | |
---|---|
Firm()
|
Method Summary | |
---|---|
Firm |
addToAddressLine(AddressLine addressLine)
add a value to the addressLine property collection |
Firm |
addToAny(java.lang.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(java.lang.Object obj)
|
java.util.List<AddressLine> |
getAddressLine()
|
java.util.List<java.lang.Object> |
getAny()
|
java.util.List<Department> |
getDepartment()
|
java.util.List<Firm.FirmName> |
getFirmName()
|
MailStop |
getMailStop()
|
java.util.Map<javax.xml.namespace.QName,java.lang.String> |
getOtherAttributes()
|
PostalCode |
getPostalCode()
|
java.lang.String |
getUnderscore()
|
int |
hashCode()
|
void |
setAddressLine(java.util.List<AddressLine> addressLine)
Sets the value of the addressLine property Objects of the following type(s) are allowed in the list List |
void |
setAny(java.util.List<java.lang.Object> any)
Sets the value of the any property Objects of the following type(s) are allowed in the list List |
void |
setDepartment(java.util.List<Department> department)
Sets the value of the department property Objects of the following type(s) are allowed in the list List |
void |
setFirmName(java.util.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(java.lang.String value)
|
Firm |
withAddressLine(java.util.List<AddressLine> addressLine)
fluent setter |
Firm |
withAny(java.util.List<java.lang.Object> any)
fluent setter |
Firm |
withDepartment(java.util.List<Department> department)
fluent setter |
Firm |
withFirmName(java.util.List<Firm.FirmName> firmName)
fluent setter |
Firm |
withMailStop(MailStop mailStop)
fluent setter |
Firm |
withPostalCode(PostalCode postalCode)
fluent setter |
Firm |
withUnderscore(java.lang.String underscore)
fluent setter |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected java.util.List<AddressLine> addressLine
protected java.util.List<Firm.FirmName> firmName
protected java.util.List<Department> department
protected MailStop mailStop
protected PostalCode postalCode
protected java.util.List<java.lang.Object> any
protected java.lang.String underscore
Constructor Detail |
---|
public Firm()
Method Detail |
---|
public java.util.List<AddressLine> getAddressLine()
public java.util.List<Firm.FirmName> getFirmName()
public java.util.List<Department> getDepartment()
public MailStop getMailStop()
MailStop
public void setMailStop(MailStop value)
value
- allowed object is
MailStop
public PostalCode getPostalCode()
PostalCode
public void setPostalCode(PostalCode value)
value
- allowed object is
PostalCode
public java.util.List<java.lang.Object> getAny()
public java.lang.String getUnderscore()
String
public void setUnderscore(java.lang.String value)
value
- allowed object is
String
public java.util.Map<javax.xml.namespace.QName,java.lang.String> getOtherAttributes()
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public 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(java.util.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
instead.
addressLine
- public Firm addToAddressLine(AddressLine addressLine)
addressLine
- Objects of the following type are allowed in the list: AddressLine
public void setFirmName(java.util.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
instead.
firmName
- public Firm addToFirmName(Firm.FirmName firmName)
firmName
- Objects of the following type are allowed in the list: Firm.FirmName
public void setDepartment(java.util.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
instead.
department
- public Firm addToDepartment(Department department)
department
- Objects of the following type are allowed in the list: Department
public void setAny(java.util.List<java.lang.Object> any)
public Firm addToAny(java.lang.Object any)
any
- Objects of the following type are allowed in the list: Object
public Firm withAddressLine(java.util.List<AddressLine> addressLine)
addressLine
- required parameter#setAddressLine(List)
public Firm withFirmName(java.util.List<Firm.FirmName> firmName)
firmName
- required parameter#setFirmName(List)
public Firm withDepartment(java.util.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(java.util.List<java.lang.Object> any)
any
- required parameter#setAny(List
public Firm withUnderscore(java.lang.String underscore)
underscore
- required parametersetUnderscore(String)
public Firm clone()
clone
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |