Class EN
Java-Klasse für EN complex type.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<complexType name="EN"> <complexContent> <extension base="{urn:hl7-org:v3}ANY"> <sequence> <choice maxOccurs="unbounded" minOccurs="0"> <element name="delimiter" type="{urn:hl7-org:v3}en.delimiter"/> <element name="family" type="{urn:hl7-org:v3}en.family"/> <element name="given" type="{urn:hl7-org:v3}en.given"/> <element name="prefix" type="{urn:hl7-org:v3}en.prefix"/> <element name="suffix" type="{urn:hl7-org:v3}en.suffix"/> </choice> <element name="validTime" type="{urn:hl7-org:v3}IVL_TS" minOccurs="0"/> </sequence> <attribute name="use" type="{urn:hl7-org:v3}set_EntityNameUse" /> </extension> </complexContent> </complexType>
-
Field Summary
FieldsFields inherited from class org.projecthusky.common.hl7cdar2.ANY
nullFlavor
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription@NonNull List<Serializable>
A name for a person, organization, place or thing.getUse()
Gets the value of the use property.Methods inherited from class org.projecthusky.common.hl7cdar2.ANY
getMergedXmlMixed, getNullFlavor, getNullFlavor, getXmlMixed, setXmlMixed, setXmlMixed
-
Field Details
-
-
use
-
-
Constructor Details
-
EN
public EN() -
EN
-
EN
-
-
Method Details
-
getContent
A name for a person, organization, place or thing. A sequence of name parts, such as given name or family name, prefix, suffix, etc. Examples for entity name values are "Jim Bob Walton, Jr.", "Health Level Seven, Inc.", "Lake Tahoe", etc. An entity name may be as simple as a character string or may consist of several entity name parts, such as, "Jim", "Bob", "Walton", and "Jr.", "Health Level Seven" and "Inc.", "Lake" and "Tahoe". Gets the value of the content property.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 content property.For example, to add a new item, do as follows:
getContent().add(newItem);
Objects of the following type(s) are allowed in the list
JAXBElement
<
EnPrefix
>
JAXBElement
<
EnGiven
>
JAXBElement
<
IVLTS
>
String
JAXBElement
<
EnFamily
>
JAXBElement
<
EnDelimiter
>
JAXBElement
<
EnSuffix
>
-
getUse
Gets the value of the use property.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 use property.For example, to add a new item, do as follows:
getUse().add(newItem);
Objects of the following type(s) are allowed in the list
String
-