Class HumanName
- java.lang.Object
-
- org.hl7.fhir.Element
-
- org.hl7.fhir.HumanName
-
- All Implemented Interfaces:
org.jvnet.jaxb2_commons.lang.Equals2,org.jvnet.jaxb2_commons.lang.HashCode2,org.jvnet.jaxb2_commons.lang.ToString2
public class HumanName extends Element implements org.jvnet.jaxb2_commons.lang.Equals2, org.jvnet.jaxb2_commons.lang.HashCode2, org.jvnet.jaxb2_commons.lang.ToString2
If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensionsJava class for HumanName complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="HumanName"> <complexContent> <extension base="{http://hl7.org/fhir}Element"> <sequence> <element name="use" type="{http://hl7.org/fhir}NameUse" minOccurs="0"/> <element name="text" type="{http://hl7.org/fhir}string" minOccurs="0"/> <element name="family" type="{http://hl7.org/fhir}string" maxOccurs="unbounded" minOccurs="0"/> <element name="given" type="{http://hl7.org/fhir}string" maxOccurs="unbounded" minOccurs="0"/> <element name="prefix" type="{http://hl7.org/fhir}string" maxOccurs="unbounded" minOccurs="0"/> <element name="suffix" type="{http://hl7.org/fhir}string" maxOccurs="unbounded" minOccurs="0"/> <element name="period" type="{http://hl7.org/fhir}Period" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description HumanName()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringBuilderappend(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, java.lang.StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)java.lang.StringBuilderappendFields(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, java.lang.StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)booleanequals(java.lang.Object object)booleanequals(org.jvnet.jaxb2_commons.locator.ObjectLocator thisLocator, org.jvnet.jaxb2_commons.locator.ObjectLocator thatLocator, java.lang.Object object, org.jvnet.jaxb2_commons.lang.EqualsStrategy2 strategy)java.util.List<String>getFamily()Gets the value of the family property.java.util.List<String>getGiven()Gets the value of the given property.PeriodgetPeriod()Gets the value of the period property.java.util.List<String>getPrefix()Gets the value of the prefix property.java.util.List<String>getSuffix()Gets the value of the suffix property.StringgetText()Gets the value of the text property.NameUsegetUse()Gets the value of the use property.inthashCode()inthashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, org.jvnet.jaxb2_commons.lang.HashCodeStrategy2 strategy)voidsetPeriod(Period value)Sets the value of the period property.voidsetText(String value)Sets the value of the text property.voidsetUse(NameUse value)Sets the value of the use property.java.lang.StringtoString()HumanNamewithExtension(java.util.Collection<Extension> values)HumanNamewithExtension(Extension... values)HumanNamewithFamily(java.util.Collection<String> values)HumanNamewithFamily(String... values)HumanNamewithGiven(java.util.Collection<String> values)HumanNamewithGiven(String... values)HumanNamewithId(java.lang.String value)HumanNamewithPeriod(Period value)HumanNamewithPrefix(java.util.Collection<String> values)HumanNamewithPrefix(String... values)HumanNamewithSuffix(java.util.Collection<String> values)HumanNamewithSuffix(String... values)HumanNamewithText(String value)HumanNamewithUse(NameUse value)-
Methods inherited from class org.hl7.fhir.Element
getExtension, getId, setId
-
-
-
-
Method Detail
-
getUse
public NameUse getUse()
Gets the value of the use property.- Returns:
- possible object is
NameUse
-
setUse
public void setUse(NameUse value)
Sets the value of the use property.- Parameters:
value- allowed object isNameUse
-
getText
public String getText()
Gets the value of the text property.- Returns:
- possible object is
String
-
setText
public void setText(String value)
Sets the value of the text property.- Parameters:
value- allowed object isString
-
getFamily
public java.util.List<String> getFamily()
Gets the value of the family 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
setmethod for the family property.For example, to add a new item, do as follows:
getFamily().add(newItem);Objects of the following type(s) are allowed in the list
String
-
getGiven
public java.util.List<String> getGiven()
Gets the value of the given 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
setmethod for the given property.For example, to add a new item, do as follows:
getGiven().add(newItem);Objects of the following type(s) are allowed in the list
String
-
getPrefix
public java.util.List<String> getPrefix()
Gets the value of the prefix 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
setmethod for the prefix property.For example, to add a new item, do as follows:
getPrefix().add(newItem);Objects of the following type(s) are allowed in the list
String
-
getSuffix
public java.util.List<String> getSuffix()
Gets the value of the suffix 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
setmethod for the suffix property.For example, to add a new item, do as follows:
getSuffix().add(newItem);Objects of the following type(s) are allowed in the list
String
-
getPeriod
public Period getPeriod()
Gets the value of the period property.- Returns:
- possible object is
Period
-
setPeriod
public void setPeriod(Period value)
Sets the value of the period property.- Parameters:
value- allowed object isPeriod
-
withExtension
public HumanName withExtension(Extension... values)
- Overrides:
withExtensionin classElement
-
withExtension
public HumanName withExtension(java.util.Collection<Extension> values)
- Overrides:
withExtensionin classElement
-
equals
public boolean equals(org.jvnet.jaxb2_commons.locator.ObjectLocator thisLocator, org.jvnet.jaxb2_commons.locator.ObjectLocator thatLocator, java.lang.Object object, org.jvnet.jaxb2_commons.lang.EqualsStrategy2 strategy)
-
hashCode
public int hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, org.jvnet.jaxb2_commons.lang.HashCodeStrategy2 strategy)
-
append
public java.lang.StringBuilder append(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, java.lang.StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)
-
appendFields
public java.lang.StringBuilder appendFields(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, java.lang.StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)- Specified by:
appendFieldsin interfaceorg.jvnet.jaxb2_commons.lang.ToString2- Overrides:
appendFieldsin classElement
-
-