public class CTPersonType
extends java.lang.Object
Java class for CT_PersonType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CT_PersonType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="Last" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_String" maxOccurs="unbounded" minOccurs="0"/>
<element name="First" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_String" maxOccurs="unbounded" minOccurs="0"/>
<element name="Middle" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_String" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected java.util.List<java.lang.String> |
first |
protected java.util.List<java.lang.String> |
last |
protected java.util.List<java.lang.String> |
middle |
| Constructor and Description |
|---|
CTPersonType() |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.lang.String> |
getFirst()
Gets the value of the first property.
|
java.util.List<java.lang.String> |
getLast()
Gets the value of the last property.
|
java.util.List<java.lang.String> |
getMiddle()
Gets the value of the middle property.
|
protected java.util.List<java.lang.String> last
protected java.util.List<java.lang.String> first
protected java.util.List<java.lang.String> middle
public java.util.List<java.lang.String> getLast()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the last property.
For example, to add a new item, do as follows:
getLast().add(newItem);
Objects of the following type(s) are allowed in the list
String
public java.util.List<java.lang.String> getFirst()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the first property.
For example, to add a new item, do as follows:
getFirst().add(newItem);
Objects of the following type(s) are allowed in the list
String
public java.util.List<java.lang.String> getMiddle()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the middle property.
For example, to add a new item, do as follows:
getMiddle().add(newItem);
Objects of the following type(s) are allowed in the list
String
Copyright © 2007–2023. All rights reserved.