public class PersonNameType extends Object
Java class for PersonNameType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PersonNameType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="nameTitle" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
<element name="givenName" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
<element name="familyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="nameSuffix" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected String |
familyName |
protected List<String> |
givenName |
protected List<String> |
nameSuffix |
protected List<String> |
nameTitle |
| Constructor and Description |
|---|
PersonNameType() |
| Modifier and Type | Method and Description |
|---|---|
String |
getFamilyName()
Gets the value of the familyName property.
|
List<String> |
getGivenName()
Gets the value of the givenName property.
|
List<String> |
getNameSuffix()
Gets the value of the nameSuffix property.
|
List<String> |
getNameTitle()
Gets the value of the nameTitle property.
|
void |
setFamilyName(String value)
Sets the value of the familyName property.
|
protected String familyName
public List<String> getNameTitle()
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 nameTitle property.
For example, to add a new item, do as follows:
getNameTitle().add(newItem);
Objects of the following type(s) are allowed in the list
String
public List<String> getGivenName()
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 givenName property.
For example, to add a new item, do as follows:
getGivenName().add(newItem);
Objects of the following type(s) are allowed in the list
String
public String getFamilyName()
Stringpublic void setFamilyName(String value)
value - allowed object is
Stringpublic List<String> getNameSuffix()
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 nameSuffix property.
For example, to add a new item, do as follows:
getNameSuffix().add(newItem);
Objects of the following type(s) are allowed in the list
String
Copyright © 2021. All rights reserved.