Package org.hl7.fhir

Class Patient

All Implemented Interfaces:
org.jvnet.jaxb2_commons.lang.Equals2, org.jvnet.jaxb2_commons.lang.HashCode2, org.jvnet.jaxb2_commons.lang.ToString2

public class Patient extends DomainResource 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 either a @value, an @id, or extensions

Java class for Patient complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="Patient">
   <complexContent>
     <extension base="{http://hl7.org/fhir}DomainResource">
       <sequence>
         <element name="identifier" type="{http://hl7.org/fhir}Identifier" maxOccurs="unbounded" minOccurs="0"/>
         <element name="active" type="{http://hl7.org/fhir}boolean" minOccurs="0"/>
         <element name="name" type="{http://hl7.org/fhir}HumanName" maxOccurs="unbounded" minOccurs="0"/>
         <element name="telecom" type="{http://hl7.org/fhir}ContactPoint" maxOccurs="unbounded" minOccurs="0"/>
         <element name="gender" type="{http://hl7.org/fhir}AdministrativeGender" minOccurs="0"/>
         <element name="birthDate" type="{http://hl7.org/fhir}date" minOccurs="0"/>
         <choice minOccurs="0">
           <element name="deceasedBoolean" type="{http://hl7.org/fhir}boolean"/>
           <element name="deceasedDateTime" type="{http://hl7.org/fhir}dateTime"/>
         </choice>
         <element name="address" type="{http://hl7.org/fhir}Address" maxOccurs="unbounded" minOccurs="0"/>
         <element name="maritalStatus" type="{http://hl7.org/fhir}CodeableConcept" minOccurs="0"/>
         <choice minOccurs="0">
           <element name="multipleBirthBoolean" type="{http://hl7.org/fhir}boolean"/>
           <element name="multipleBirthInteger" type="{http://hl7.org/fhir}integer"/>
         </choice>
         <element name="photo" type="{http://hl7.org/fhir}Attachment" maxOccurs="unbounded" minOccurs="0"/>
         <element name="contact" type="{http://hl7.org/fhir}Patient.Contact" maxOccurs="unbounded" minOccurs="0"/>
         <element name="animal" type="{http://hl7.org/fhir}Patient.Animal" minOccurs="0"/>
         <element name="communication" type="{http://hl7.org/fhir}Patient.Communication" maxOccurs="unbounded" minOccurs="0"/>
         <element name="careProvider" type="{http://hl7.org/fhir}Reference" maxOccurs="unbounded" minOccurs="0"/>
         <element name="managingOrganization" type="{http://hl7.org/fhir}Reference" minOccurs="0"/>
         <element name="link" type="{http://hl7.org/fhir}Patient.Link" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • Patient

      public Patient()
  • Method Details

    • getIdentifier

      public List<Identifier> getIdentifier()
      Gets the value of the identifier 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 Jakarta XML Binding object. This is why there is not a set method for the identifier property.

      For example, to add a new item, do as follows:

          getIdentifier().add(newItem);
       

      Objects of the following type(s) are allowed in the list Identifier

    • getActive

      public Boolean getActive()
      Gets the value of the active property.
      Returns:
      possible object is Boolean
    • setActive

      public void setActive(Boolean value)
      Sets the value of the active property.
      Parameters:
      value - allowed object is Boolean
    • getName

      public List<HumanName> getName()
      Gets the value of the name 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 Jakarta XML Binding object. This is why there is not a set method for the name property.

      For example, to add a new item, do as follows:

          getName().add(newItem);
       

      Objects of the following type(s) are allowed in the list HumanName

    • getTelecom

      public List<ContactPoint> getTelecom()
      Gets the value of the telecom 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 Jakarta XML Binding object. This is why there is not a set method for the telecom property.

      For example, to add a new item, do as follows:

          getTelecom().add(newItem);
       

      Objects of the following type(s) are allowed in the list ContactPoint

    • getGender

      public AdministrativeGender getGender()
      Gets the value of the gender property.
      Returns:
      possible object is AdministrativeGender
    • setGender

      public void setGender(AdministrativeGender value)
      Sets the value of the gender property.
      Parameters:
      value - allowed object is AdministrativeGender
    • getBirthDate

      public Date getBirthDate()
      Gets the value of the birthDate property.
      Returns:
      possible object is Date
    • setBirthDate

      public void setBirthDate(Date value)
      Sets the value of the birthDate property.
      Parameters:
      value - allowed object is Date
    • getDeceasedBoolean

      public Boolean getDeceasedBoolean()
      Gets the value of the deceasedBoolean property.
      Returns:
      possible object is Boolean
    • setDeceasedBoolean

      public void setDeceasedBoolean(Boolean value)
      Sets the value of the deceasedBoolean property.
      Parameters:
      value - allowed object is Boolean
    • getDeceasedDateTime

      public DateTime getDeceasedDateTime()
      Gets the value of the deceasedDateTime property.
      Returns:
      possible object is DateTime
    • setDeceasedDateTime

      public void setDeceasedDateTime(DateTime value)
      Sets the value of the deceasedDateTime property.
      Parameters:
      value - allowed object is DateTime
    • getAddress

      public List<Address> getAddress()
      Gets the value of the address 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 Jakarta XML Binding object. This is why there is not a set method for the address property.

      For example, to add a new item, do as follows:

          getAddress().add(newItem);
       

      Objects of the following type(s) are allowed in the list Address

    • getMaritalStatus

      public CodeableConcept getMaritalStatus()
      Gets the value of the maritalStatus property.
      Returns:
      possible object is CodeableConcept
    • setMaritalStatus

      public void setMaritalStatus(CodeableConcept value)
      Sets the value of the maritalStatus property.
      Parameters:
      value - allowed object is CodeableConcept
    • getMultipleBirthBoolean

      public Boolean getMultipleBirthBoolean()
      Gets the value of the multipleBirthBoolean property.
      Returns:
      possible object is Boolean
    • setMultipleBirthBoolean

      public void setMultipleBirthBoolean(Boolean value)
      Sets the value of the multipleBirthBoolean property.
      Parameters:
      value - allowed object is Boolean
    • getMultipleBirthInteger

      public Integer getMultipleBirthInteger()
      Gets the value of the multipleBirthInteger property.
      Returns:
      possible object is Integer
    • setMultipleBirthInteger

      public void setMultipleBirthInteger(Integer value)
      Sets the value of the multipleBirthInteger property.
      Parameters:
      value - allowed object is Integer
    • getPhoto

      public List<Attachment> getPhoto()
      Gets the value of the photo 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 Jakarta XML Binding object. This is why there is not a set method for the photo property.

      For example, to add a new item, do as follows:

          getPhoto().add(newItem);
       

      Objects of the following type(s) are allowed in the list Attachment

    • getContact

      public List<PatientContact> getContact()
      Gets the value of the contact 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 Jakarta XML Binding object. This is why there is not a set method for the contact property.

      For example, to add a new item, do as follows:

          getContact().add(newItem);
       

      Objects of the following type(s) are allowed in the list PatientContact

    • getAnimal

      public PatientAnimal getAnimal()
      Gets the value of the animal property.
      Returns:
      possible object is PatientAnimal
    • setAnimal

      public void setAnimal(PatientAnimal value)
      Sets the value of the animal property.
      Parameters:
      value - allowed object is PatientAnimal
    • getCommunication

      public List<PatientCommunication> getCommunication()
      Gets the value of the communication 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 Jakarta XML Binding object. This is why there is not a set method for the communication property.

      For example, to add a new item, do as follows:

          getCommunication().add(newItem);
       

      Objects of the following type(s) are allowed in the list PatientCommunication

    • getCareProvider

      public List<Reference> getCareProvider()
      Gets the value of the careProvider 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 Jakarta XML Binding object. This is why there is not a set method for the careProvider property.

      For example, to add a new item, do as follows:

          getCareProvider().add(newItem);
       

      Objects of the following type(s) are allowed in the list Reference

    • getManagingOrganization

      public Reference getManagingOrganization()
      Gets the value of the managingOrganization property.
      Returns:
      possible object is Reference
    • setManagingOrganization

      public void setManagingOrganization(Reference value)
      Sets the value of the managingOrganization property.
      Parameters:
      value - allowed object is Reference
    • getLink

      public List<PatientLink> getLink()
      Gets the value of the link 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 Jakarta XML Binding object. This is why there is not a set method for the link property.

      For example, to add a new item, do as follows:

          getLink().add(newItem);
       

      Objects of the following type(s) are allowed in the list PatientLink

    • withIdentifier

      public Patient withIdentifier(Identifier... values)
    • withIdentifier

      public Patient withIdentifier(Collection<Identifier> values)
    • withActive

      public Patient withActive(Boolean value)
    • withName

      public Patient withName(HumanName... values)
    • withName

      public Patient withName(Collection<HumanName> values)
    • withTelecom

      public Patient withTelecom(ContactPoint... values)
    • withTelecom

      public Patient withTelecom(Collection<ContactPoint> values)
    • withGender

      public Patient withGender(AdministrativeGender value)
    • withBirthDate

      public Patient withBirthDate(Date value)
    • withDeceasedBoolean

      public Patient withDeceasedBoolean(Boolean value)
    • withDeceasedDateTime

      public Patient withDeceasedDateTime(DateTime value)
    • withAddress

      public Patient withAddress(Address... values)
    • withAddress

      public Patient withAddress(Collection<Address> values)
    • withMaritalStatus

      public Patient withMaritalStatus(CodeableConcept value)
    • withMultipleBirthBoolean

      public Patient withMultipleBirthBoolean(Boolean value)
    • withMultipleBirthInteger

      public Patient withMultipleBirthInteger(Integer value)
    • withPhoto

      public Patient withPhoto(Attachment... values)
    • withPhoto

      public Patient withPhoto(Collection<Attachment> values)
    • withContact

      public Patient withContact(PatientContact... values)
    • withContact

      public Patient withContact(Collection<PatientContact> values)
    • withAnimal

      public Patient withAnimal(PatientAnimal value)
    • withCommunication

      public Patient withCommunication(PatientCommunication... values)
    • withCommunication

      public Patient withCommunication(Collection<PatientCommunication> values)
    • withCareProvider

      public Patient withCareProvider(Reference... values)
    • withCareProvider

      public Patient withCareProvider(Collection<Reference> values)
    • withManagingOrganization

      public Patient withManagingOrganization(Reference value)
    • withLink

      public Patient withLink(PatientLink... values)
    • withLink

      public Patient withLink(Collection<PatientLink> values)
    • withText

      public Patient withText(Narrative value)
      Overrides:
      withText in class DomainResource
    • withContained

      public Patient withContained(ResourceContainer... values)
      Overrides:
      withContained in class DomainResource
    • withContained

      public Patient withContained(Collection<ResourceContainer> values)
      Overrides:
      withContained in class DomainResource
    • withExtension

      public Patient withExtension(Extension... values)
      Overrides:
      withExtension in class DomainResource
    • withExtension

      public Patient withExtension(Collection<Extension> values)
      Overrides:
      withExtension in class DomainResource
    • withModifierExtension

      public Patient withModifierExtension(Extension... values)
      Overrides:
      withModifierExtension in class DomainResource
    • withModifierExtension

      public Patient withModifierExtension(Collection<Extension> values)
      Overrides:
      withModifierExtension in class DomainResource
    • withId

      public Patient withId(Id value)
      Overrides:
      withId in class DomainResource
    • withMeta

      public Patient withMeta(Meta value)
      Overrides:
      withMeta in class DomainResource
    • withImplicitRules

      public Patient withImplicitRules(Uri value)
      Overrides:
      withImplicitRules in class DomainResource
    • withLanguage

      public Patient withLanguage(Code value)
      Overrides:
      withLanguage in class DomainResource
    • equals

      public boolean equals(org.jvnet.jaxb2_commons.locator.ObjectLocator thisLocator, org.jvnet.jaxb2_commons.locator.ObjectLocator thatLocator, Object object, org.jvnet.jaxb2_commons.lang.EqualsStrategy2 strategy)
      Specified by:
      equals in interface org.jvnet.jaxb2_commons.lang.Equals2
      Overrides:
      equals in class DomainResource
    • equals

      public boolean equals(Object object)
      Overrides:
      equals in class DomainResource
    • hashCode

      public int hashCode(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, org.jvnet.jaxb2_commons.lang.HashCodeStrategy2 strategy)
      Specified by:
      hashCode in interface org.jvnet.jaxb2_commons.lang.HashCode2
      Overrides:
      hashCode in class DomainResource
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class DomainResource
    • toString

      public String toString()
      Overrides:
      toString in class DomainResource
    • append

      public StringBuilder append(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)
      Specified by:
      append in interface org.jvnet.jaxb2_commons.lang.ToString2
      Overrides:
      append in class DomainResource
    • appendFields

      public StringBuilder appendFields(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb2_commons.lang.ToStringStrategy2 strategy)
      Specified by:
      appendFields in interface org.jvnet.jaxb2_commons.lang.ToString2
      Overrides:
      appendFields in class DomainResource
    • setIdentifier

      public void setIdentifier(List<Identifier> value)
    • setName

      public void setName(List<HumanName> value)
    • setTelecom

      public void setTelecom(List<ContactPoint> value)
    • setAddress

      public void setAddress(List<Address> value)
    • setPhoto

      public void setPhoto(List<Attachment> value)
    • setContact

      public void setContact(List<PatientContact> value)
    • setCommunication

      public void setCommunication(List<PatientCommunication> value)
    • setCareProvider

      public void setCareProvider(List<Reference> value)
    • setLink

      public void setLink(List<PatientLink> value)