All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hl7.fhir.dstu2.model.FamilyMemberHistory Maven / Gradle / Ivy

The newest version!
package org.hl7.fhir.dstu2.model;

/*
  Copyright (c) 2011+, HL7, Inc.
  All rights reserved.
  
  Redistribution and use in source and binary forms, with or without modification, 
  are permitted provided that the following conditions are met:
  
   * Redistributions of source code must retain the above copyright notice, this 
     list of conditions and the following disclaimer.
   * Redistributions in binary form must reproduce the above copyright notice, 
     this list of conditions and the following disclaimer in the documentation 
     and/or other materials provided with the distribution.
   * Neither the name of HL7 nor the names of its contributors may be used to 
     endorse or promote products derived from this software without specific 
     prior written permission.
  
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
  IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
  POSSIBILITY OF SUCH DAMAGE.
  
*/

// Generated on Wed, Jul 13, 2016 05:32+1000 for FHIR v1.0.2
import java.util.ArrayList;
import java.util.Date;
import java.util.List;

import org.hl7.fhir.dstu2.model.Enumerations.AdministrativeGender;
import org.hl7.fhir.dstu2.model.Enumerations.AdministrativeGenderEnumFactory;
import ca.uhn.fhir.model.api.annotation.Block;
import ca.uhn.fhir.model.api.annotation.Child;
import ca.uhn.fhir.model.api.annotation.Description;
import ca.uhn.fhir.model.api.annotation.ResourceDef;
import ca.uhn.fhir.model.api.annotation.SearchParamDefinition;
import org.hl7.fhir.instance.model.api.IBaseBackboneElement;
import org.hl7.fhir.exceptions.FHIRException;
import org.hl7.fhir.utilities.Utilities;

/**
 * Significant health events and conditions for a person related to the patient
 * relevant in the context of care for the patient.
 */
@ResourceDef(name = "FamilyMemberHistory", profile = "http://hl7.org/fhir/Profile/FamilyMemberHistory")
public class FamilyMemberHistory extends DomainResource {

  public enum FamilyHistoryStatus {
    /**
     * Some health information is known and captured, but not complete - see notes
     * for details.
     */
    PARTIAL,
    /**
     * All relevant health information is known and captured.
     */
    COMPLETED,
    /**
     * This instance should not have been part of this patient's medical record.
     */
    ENTEREDINERROR,
    /**
     * Health information for this individual is unavailable/unknown.
     */
    HEALTHUNKNOWN,
    /**
     * added to help the parsers
     */
    NULL;

    public static FamilyHistoryStatus fromCode(String codeString) throws FHIRException {
      if (codeString == null || "".equals(codeString))
        return null;
      if ("partial".equals(codeString))
        return PARTIAL;
      if ("completed".equals(codeString))
        return COMPLETED;
      if ("entered-in-error".equals(codeString))
        return ENTEREDINERROR;
      if ("health-unknown".equals(codeString))
        return HEALTHUNKNOWN;
      throw new FHIRException("Unknown FamilyHistoryStatus code '" + codeString + "'");
    }

    public String toCode() {
      switch (this) {
      case PARTIAL:
        return "partial";
      case COMPLETED:
        return "completed";
      case ENTEREDINERROR:
        return "entered-in-error";
      case HEALTHUNKNOWN:
        return "health-unknown";
      case NULL:
        return null;
      default:
        return "?";
      }
    }

    public String getSystem() {
      switch (this) {
      case PARTIAL:
        return "http://hl7.org/fhir/history-status";
      case COMPLETED:
        return "http://hl7.org/fhir/history-status";
      case ENTEREDINERROR:
        return "http://hl7.org/fhir/history-status";
      case HEALTHUNKNOWN:
        return "http://hl7.org/fhir/history-status";
      case NULL:
        return null;
      default:
        return "?";
      }
    }

    public String getDefinition() {
      switch (this) {
      case PARTIAL:
        return "Some health information is known and captured, but not complete - see notes for details.";
      case COMPLETED:
        return "All relevant health information is known and captured.";
      case ENTEREDINERROR:
        return "This instance should not have been part of this patient's medical record.";
      case HEALTHUNKNOWN:
        return "Health information for this individual is unavailable/unknown.";
      case NULL:
        return null;
      default:
        return "?";
      }
    }

    public String getDisplay() {
      switch (this) {
      case PARTIAL:
        return "Partial";
      case COMPLETED:
        return "Completed";
      case ENTEREDINERROR:
        return "Entered in error";
      case HEALTHUNKNOWN:
        return "Health unknown";
      case NULL:
        return null;
      default:
        return "?";
      }
    }
  }

  public static class FamilyHistoryStatusEnumFactory implements EnumFactory {
    public FamilyHistoryStatus fromCode(String codeString) throws IllegalArgumentException {
      if (codeString == null || "".equals(codeString))
        if (codeString == null || "".equals(codeString))
          return null;
      if ("partial".equals(codeString))
        return FamilyHistoryStatus.PARTIAL;
      if ("completed".equals(codeString))
        return FamilyHistoryStatus.COMPLETED;
      if ("entered-in-error".equals(codeString))
        return FamilyHistoryStatus.ENTEREDINERROR;
      if ("health-unknown".equals(codeString))
        return FamilyHistoryStatus.HEALTHUNKNOWN;
      throw new IllegalArgumentException("Unknown FamilyHistoryStatus code '" + codeString + "'");
    }

    public Enumeration fromType(Base code) throws FHIRException {
      if (code == null || code.isEmpty())
        return null;
      String codeString = ((PrimitiveType) code).asStringValue();
      if (codeString == null || "".equals(codeString))
        return null;
      if ("partial".equals(codeString))
        return new Enumeration(this, FamilyHistoryStatus.PARTIAL);
      if ("completed".equals(codeString))
        return new Enumeration(this, FamilyHistoryStatus.COMPLETED);
      if ("entered-in-error".equals(codeString))
        return new Enumeration(this, FamilyHistoryStatus.ENTEREDINERROR);
      if ("health-unknown".equals(codeString))
        return new Enumeration(this, FamilyHistoryStatus.HEALTHUNKNOWN);
      throw new FHIRException("Unknown FamilyHistoryStatus code '" + codeString + "'");
    }

    public String toCode(FamilyHistoryStatus code)
   {
       if (code == FamilyHistoryStatus.NULL)
           return null;
       if (code == FamilyHistoryStatus.PARTIAL)
        return "partial";
      if (code == FamilyHistoryStatus.COMPLETED)
        return "completed";
      if (code == FamilyHistoryStatus.ENTEREDINERROR)
        return "entered-in-error";
      if (code == FamilyHistoryStatus.HEALTHUNKNOWN)
        return "health-unknown";
      return "?";
   }
  }

  @Block()
  public static class FamilyMemberHistoryConditionComponent extends BackboneElement implements IBaseBackboneElement {
    /**
     * The actual condition specified. Could be a coded condition (like MI or
     * Diabetes) or a less specific string like 'cancer' depending on how much is
     * known about the condition and the capabilities of the creating system.
     */
    @Child(name = "code", type = {
        CodeableConcept.class }, order = 1, min = 1, max = 1, modifier = false, summary = false)
    @Description(shortDefinition = "Condition suffered by relation", formalDefinition = "The actual condition specified. Could be a coded condition (like MI or Diabetes) or a less specific string like 'cancer' depending on how much is known about the condition and the capabilities of the creating system.")
    protected CodeableConcept code;

    /**
     * Indicates what happened as a result of this condition. If the condition
     * resulted in death, deceased date is captured on the relation.
     */
    @Child(name = "outcome", type = {
        CodeableConcept.class }, order = 2, min = 0, max = 1, modifier = false, summary = false)
    @Description(shortDefinition = "deceased | permanent disability | etc.", formalDefinition = "Indicates what happened as a result of this condition.  If the condition resulted in death, deceased date is captured on the relation.")
    protected CodeableConcept outcome;

    /**
     * Either the age of onset, range of approximate age or descriptive string can
     * be recorded. For conditions with multiple occurrences, this describes the
     * first known occurrence.
     */
    @Child(name = "onset", type = { Age.class, Range.class, Period.class,
        StringType.class }, order = 3, min = 0, max = 1, modifier = false, summary = false)
    @Description(shortDefinition = "When condition first manifested", formalDefinition = "Either the age of onset, range of approximate age or descriptive string can be recorded.  For conditions with multiple occurrences, this describes the first known occurrence.")
    protected Type onset;

    /**
     * An area where general notes can be placed about this specific condition.
     */
    @Child(name = "note", type = { Annotation.class }, order = 4, min = 0, max = 1, modifier = false, summary = false)
    @Description(shortDefinition = "Extra information about condition", formalDefinition = "An area where general notes can be placed about this specific condition.")
    protected Annotation note;

    private static final long serialVersionUID = -1221569121L;

    /*
     * Constructor
     */
    public FamilyMemberHistoryConditionComponent() {
      super();
    }

    /*
     * Constructor
     */
    public FamilyMemberHistoryConditionComponent(CodeableConcept code) {
      super();
      this.code = code;
    }

    /**
     * @return {@link #code} (The actual condition specified. Could be a coded
     *         condition (like MI or Diabetes) or a less specific string like
     *         'cancer' depending on how much is known about the condition and the
     *         capabilities of the creating system.)
     */
    public CodeableConcept getCode() {
      if (this.code == null)
        if (Configuration.errorOnAutoCreate())
          throw new Error("Attempt to auto-create FamilyMemberHistoryConditionComponent.code");
        else if (Configuration.doAutoCreate())
          this.code = new CodeableConcept(); // cc
      return this.code;
    }

    public boolean hasCode() {
      return this.code != null && !this.code.isEmpty();
    }

    /**
     * @param value {@link #code} (The actual condition specified. Could be a coded
     *              condition (like MI or Diabetes) or a less specific string like
     *              'cancer' depending on how much is known about the condition and
     *              the capabilities of the creating system.)
     */
    public FamilyMemberHistoryConditionComponent setCode(CodeableConcept value) {
      this.code = value;
      return this;
    }

    /**
     * @return {@link #outcome} (Indicates what happened as a result of this
     *         condition. If the condition resulted in death, deceased date is
     *         captured on the relation.)
     */
    public CodeableConcept getOutcome() {
      if (this.outcome == null)
        if (Configuration.errorOnAutoCreate())
          throw new Error("Attempt to auto-create FamilyMemberHistoryConditionComponent.outcome");
        else if (Configuration.doAutoCreate())
          this.outcome = new CodeableConcept(); // cc
      return this.outcome;
    }

    public boolean hasOutcome() {
      return this.outcome != null && !this.outcome.isEmpty();
    }

    /**
     * @param value {@link #outcome} (Indicates what happened as a result of this
     *              condition. If the condition resulted in death, deceased date is
     *              captured on the relation.)
     */
    public FamilyMemberHistoryConditionComponent setOutcome(CodeableConcept value) {
      this.outcome = value;
      return this;
    }

    /**
     * @return {@link #onset} (Either the age of onset, range of approximate age or
     *         descriptive string can be recorded. For conditions with multiple
     *         occurrences, this describes the first known occurrence.)
     */
    public Type getOnset() {
      return this.onset;
    }

    /**
     * @return {@link #onset} (Either the age of onset, range of approximate age or
     *         descriptive string can be recorded. For conditions with multiple
     *         occurrences, this describes the first known occurrence.)
     */
    public Age getOnsetAge() throws FHIRException {
      if (!(this.onset instanceof Age))
        throw new FHIRException(
            "Type mismatch: the type Age was expected, but " + this.onset.getClass().getName() + " was encountered");
      return (Age) this.onset;
    }

    public boolean hasOnsetAge() {
      return this.onset instanceof Age;
    }

    /**
     * @return {@link #onset} (Either the age of onset, range of approximate age or
     *         descriptive string can be recorded. For conditions with multiple
     *         occurrences, this describes the first known occurrence.)
     */
    public Range getOnsetRange() throws FHIRException {
      if (!(this.onset instanceof Range))
        throw new FHIRException(
            "Type mismatch: the type Range was expected, but " + this.onset.getClass().getName() + " was encountered");
      return (Range) this.onset;
    }

    public boolean hasOnsetRange() {
      return this.onset instanceof Range;
    }

    /**
     * @return {@link #onset} (Either the age of onset, range of approximate age or
     *         descriptive string can be recorded. For conditions with multiple
     *         occurrences, this describes the first known occurrence.)
     */
    public Period getOnsetPeriod() throws FHIRException {
      if (!(this.onset instanceof Period))
        throw new FHIRException(
            "Type mismatch: the type Period was expected, but " + this.onset.getClass().getName() + " was encountered");
      return (Period) this.onset;
    }

    public boolean hasOnsetPeriod() {
      return this.onset instanceof Period;
    }

    /**
     * @return {@link #onset} (Either the age of onset, range of approximate age or
     *         descriptive string can be recorded. For conditions with multiple
     *         occurrences, this describes the first known occurrence.)
     */
    public StringType getOnsetStringType() throws FHIRException {
      if (!(this.onset instanceof StringType))
        throw new FHIRException("Type mismatch: the type StringType was expected, but "
            + this.onset.getClass().getName() + " was encountered");
      return (StringType) this.onset;
    }

    public boolean hasOnsetStringType() {
      return this.onset instanceof StringType;
    }

    public boolean hasOnset() {
      return this.onset != null && !this.onset.isEmpty();
    }

    /**
     * @param value {@link #onset} (Either the age of onset, range of approximate
     *              age or descriptive string can be recorded. For conditions with
     *              multiple occurrences, this describes the first known
     *              occurrence.)
     */
    public FamilyMemberHistoryConditionComponent setOnset(Type value) {
      this.onset = value;
      return this;
    }

    /**
     * @return {@link #note} (An area where general notes can be placed about this
     *         specific condition.)
     */
    public Annotation getNote() {
      if (this.note == null)
        if (Configuration.errorOnAutoCreate())
          throw new Error("Attempt to auto-create FamilyMemberHistoryConditionComponent.note");
        else if (Configuration.doAutoCreate())
          this.note = new Annotation(); // cc
      return this.note;
    }

    public boolean hasNote() {
      return this.note != null && !this.note.isEmpty();
    }

    /**
     * @param value {@link #note} (An area where general notes can be placed about
     *              this specific condition.)
     */
    public FamilyMemberHistoryConditionComponent setNote(Annotation value) {
      this.note = value;
      return this;
    }

    protected void listChildren(List childrenList) {
      super.listChildren(childrenList);
      childrenList.add(new Property("code", "CodeableConcept",
          "The actual condition specified. Could be a coded condition (like MI or Diabetes) or a less specific string like 'cancer' depending on how much is known about the condition and the capabilities of the creating system.",
          0, java.lang.Integer.MAX_VALUE, code));
      childrenList.add(new Property("outcome", "CodeableConcept",
          "Indicates what happened as a result of this condition.  If the condition resulted in death, deceased date is captured on the relation.",
          0, java.lang.Integer.MAX_VALUE, outcome));
      childrenList.add(new Property("onset[x]", "Age|Range|Period|string",
          "Either the age of onset, range of approximate age or descriptive string can be recorded.  For conditions with multiple occurrences, this describes the first known occurrence.",
          0, java.lang.Integer.MAX_VALUE, onset));
      childrenList.add(
          new Property("note", "Annotation", "An area where general notes can be placed about this specific condition.",
              0, java.lang.Integer.MAX_VALUE, note));
    }

    @Override
    public void setProperty(String name, Base value) throws FHIRException {
      if (name.equals("code"))
        this.code = castToCodeableConcept(value); // CodeableConcept
      else if (name.equals("outcome"))
        this.outcome = castToCodeableConcept(value); // CodeableConcept
      else if (name.equals("onset[x]"))
        this.onset = (Type) value; // Type
      else if (name.equals("note"))
        this.note = castToAnnotation(value); // Annotation
      else
        super.setProperty(name, value);
    }

    @Override
    public Base addChild(String name) throws FHIRException {
      if (name.equals("code")) {
        this.code = new CodeableConcept();
        return this.code;
      } else if (name.equals("outcome")) {
        this.outcome = new CodeableConcept();
        return this.outcome;
      } else if (name.equals("onsetAge")) {
        this.onset = new Age();
        return this.onset;
      } else if (name.equals("onsetRange")) {
        this.onset = new Range();
        return this.onset;
      } else if (name.equals("onsetPeriod")) {
        this.onset = new Period();
        return this.onset;
      } else if (name.equals("onsetString")) {
        this.onset = new StringType();
        return this.onset;
      } else if (name.equals("note")) {
        this.note = new Annotation();
        return this.note;
      } else
        return super.addChild(name);
    }

    public FamilyMemberHistoryConditionComponent copy() {
      FamilyMemberHistoryConditionComponent dst = new FamilyMemberHistoryConditionComponent();
      copyValues(dst);
      dst.code = code == null ? null : code.copy();
      dst.outcome = outcome == null ? null : outcome.copy();
      dst.onset = onset == null ? null : onset.copy();
      dst.note = note == null ? null : note.copy();
      return dst;
    }

    @Override
    public boolean equalsDeep(Base other) {
      if (!super.equalsDeep(other))
        return false;
      if (!(other instanceof FamilyMemberHistoryConditionComponent))
        return false;
      FamilyMemberHistoryConditionComponent o = (FamilyMemberHistoryConditionComponent) other;
      return compareDeep(code, o.code, true) && compareDeep(outcome, o.outcome, true)
          && compareDeep(onset, o.onset, true) && compareDeep(note, o.note, true);
    }

    @Override
    public boolean equalsShallow(Base other) {
      if (!super.equalsShallow(other))
        return false;
      if (!(other instanceof FamilyMemberHistoryConditionComponent))
        return false;
      FamilyMemberHistoryConditionComponent o = (FamilyMemberHistoryConditionComponent) other;
      return true;
    }

    public boolean isEmpty() {
      return super.isEmpty() && (code == null || code.isEmpty()) && (outcome == null || outcome.isEmpty())
          && (onset == null || onset.isEmpty()) && (note == null || note.isEmpty());
    }

    public String fhirType() {
      return "FamilyMemberHistory.condition";

    }

  }

  /**
   * This records identifiers associated with this family member history record
   * that are defined by business processes and/ or used to refer to it when a
   * direct URL reference to the resource itself is not appropriate (e.g. in CDA
   * documents, or in written / printed documentation).
   */
  @Child(name = "identifier", type = {
      Identifier.class }, order = 0, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = false)
  @Description(shortDefinition = "External Id(s) for this record", formalDefinition = "This records identifiers associated with this family member history record that are defined by business processes and/ or used to refer to it when a direct URL reference to the resource itself is not appropriate (e.g. in CDA documents, or in written / printed documentation).")
  protected List identifier;

  /**
   * The person who this history concerns.
   */
  @Child(name = "patient", type = { Patient.class }, order = 1, min = 1, max = 1, modifier = false, summary = true)
  @Description(shortDefinition = "Patient history is about", formalDefinition = "The person who this history concerns.")
  protected Reference patient;

  /**
   * The actual object that is the target of the reference (The person who this
   * history concerns.)
   */
  protected Patient patientTarget;

  /**
   * The date (and possibly time) when the family member history was taken.
   */
  @Child(name = "date", type = { DateTimeType.class }, order = 2, min = 0, max = 1, modifier = false, summary = true)
  @Description(shortDefinition = "When history was captured/updated", formalDefinition = "The date (and possibly time) when the family member history was taken.")
  protected DateTimeType date;

  /**
   * A code specifying a state of a Family Member History record.
   */
  @Child(name = "status", type = { CodeType.class }, order = 3, min = 1, max = 1, modifier = true, summary = true)
  @Description(shortDefinition = "partial | completed | entered-in-error | health-unknown", formalDefinition = "A code specifying a state of a Family Member History record.")
  protected Enumeration status;

  /**
   * This will either be a name or a description; e.g. "Aunt Susan", "my cousin
   * with the red hair".
   */
  @Child(name = "name", type = { StringType.class }, order = 4, min = 0, max = 1, modifier = false, summary = true)
  @Description(shortDefinition = "The family member described", formalDefinition = "This will either be a name or a description; e.g. \"Aunt Susan\", \"my cousin with the red hair\".")
  protected StringType name;

  /**
   * The type of relationship this person has to the patient (father, mother,
   * brother etc.).
   */
  @Child(name = "relationship", type = {
      CodeableConcept.class }, order = 5, min = 1, max = 1, modifier = false, summary = true)
  @Description(shortDefinition = "Relationship to the subject", formalDefinition = "The type of relationship this person has to the patient (father, mother, brother etc.).")
  protected CodeableConcept relationship;

  /**
   * Administrative Gender - the gender that the relative is considered to have
   * for administration and record keeping purposes.
   */
  @Child(name = "gender", type = { CodeType.class }, order = 6, min = 0, max = 1, modifier = false, summary = true)
  @Description(shortDefinition = "male | female | other | unknown", formalDefinition = "Administrative Gender - the gender that the relative is considered to have for administration and record keeping purposes.")
  protected Enumeration gender;

  /**
   * The actual or approximate date of birth of the relative.
   */
  @Child(name = "born", type = { Period.class, DateType.class,
      StringType.class }, order = 7, min = 0, max = 1, modifier = false, summary = false)
  @Description(shortDefinition = "(approximate) date of birth", formalDefinition = "The actual or approximate date of birth of the relative.")
  protected Type born;

  /**
   * The actual or approximate age of the relative at the time the family member
   * history is recorded.
   */
  @Child(name = "age", type = { Age.class, Range.class,
      StringType.class }, order = 8, min = 0, max = 1, modifier = false, summary = false)
  @Description(shortDefinition = "(approximate) age", formalDefinition = "The actual or approximate age of the relative at the time the family member history is recorded.")
  protected Type age;

  /**
   * Deceased flag or the actual or approximate age of the relative at the time of
   * death for the family member history record.
   */
  @Child(name = "deceased", type = { BooleanType.class, Age.class, Range.class, DateType.class,
      StringType.class }, order = 9, min = 0, max = 1, modifier = false, summary = false)
  @Description(shortDefinition = "Dead? How old/when?", formalDefinition = "Deceased flag or the actual or approximate age of the relative at the time of death for the family member history record.")
  protected Type deceased;

  /**
   * This property allows a non condition-specific note to the made about the
   * related person. Ideally, the note would be in the condition property, but
   * this is not always possible.
   */
  @Child(name = "note", type = { Annotation.class }, order = 10, min = 0, max = 1, modifier = false, summary = false)
  @Description(shortDefinition = "General note about related person", formalDefinition = "This property allows a non condition-specific note to the made about the related person. Ideally, the note would be in the condition property, but this is not always possible.")
  protected Annotation note;

  /**
   * The significant Conditions (or condition) that the family member had. This is
   * a repeating section to allow a system to represent more than one condition
   * per resource, though there is nothing stopping multiple resources - one per
   * condition.
   */
  @Child(name = "condition", type = {}, order = 11, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = false)
  @Description(shortDefinition = "Condition that the related person had", formalDefinition = "The significant Conditions (or condition) that the family member had. This is a repeating section to allow a system to represent more than one condition per resource, though there is nothing stopping multiple resources - one per condition.")
  protected List condition;

  private static final long serialVersionUID = -1799103041L;

  /*
   * Constructor
   */
  public FamilyMemberHistory() {
    super();
  }

  /*
   * Constructor
   */
  public FamilyMemberHistory(Reference patient, Enumeration status, CodeableConcept relationship) {
    super();
    this.patient = patient;
    this.status = status;
    this.relationship = relationship;
  }

  /**
   * @return {@link #identifier} (This records identifiers associated with this
   *         family member history record that are defined by business processes
   *         and/ or used to refer to it when a direct URL reference to the
   *         resource itself is not appropriate (e.g. in CDA documents, or in
   *         written / printed documentation).)
   */
  public List getIdentifier() {
    if (this.identifier == null)
      this.identifier = new ArrayList();
    return this.identifier;
  }

  public boolean hasIdentifier() {
    if (this.identifier == null)
      return false;
    for (Identifier item : this.identifier)
      if (!item.isEmpty())
        return true;
    return false;
  }

  /**
   * @return {@link #identifier} (This records identifiers associated with this
   *         family member history record that are defined by business processes
   *         and/ or used to refer to it when a direct URL reference to the
   *         resource itself is not appropriate (e.g. in CDA documents, or in
   *         written / printed documentation).)
   */
  // syntactic sugar
  public Identifier addIdentifier() { // 3
    Identifier t = new Identifier();
    if (this.identifier == null)
      this.identifier = new ArrayList();
    this.identifier.add(t);
    return t;
  }

  // syntactic sugar
  public FamilyMemberHistory addIdentifier(Identifier t) { // 3
    if (t == null)
      return this;
    if (this.identifier == null)
      this.identifier = new ArrayList();
    this.identifier.add(t);
    return this;
  }

  /**
   * @return {@link #patient} (The person who this history concerns.)
   */
  public Reference getPatient() {
    if (this.patient == null)
      if (Configuration.errorOnAutoCreate())
        throw new Error("Attempt to auto-create FamilyMemberHistory.patient");
      else if (Configuration.doAutoCreate())
        this.patient = new Reference(); // cc
    return this.patient;
  }

  public boolean hasPatient() {
    return this.patient != null && !this.patient.isEmpty();
  }

  /**
   * @param value {@link #patient} (The person who this history concerns.)
   */
  public FamilyMemberHistory setPatient(Reference value) {
    this.patient = value;
    return this;
  }

  /**
   * @return {@link #patient} The actual object that is the target of the
   *         reference. The reference library doesn't populate this, but you can
   *         use it to hold the resource if you resolve it. (The person who this
   *         history concerns.)
   */
  public Patient getPatientTarget() {
    if (this.patientTarget == null)
      if (Configuration.errorOnAutoCreate())
        throw new Error("Attempt to auto-create FamilyMemberHistory.patient");
      else if (Configuration.doAutoCreate())
        this.patientTarget = new Patient(); // aa
    return this.patientTarget;
  }

  /**
   * @param value {@link #patient} The actual object that is the target of the
   *              reference. The reference library doesn't use these, but you can
   *              use it to hold the resource if you resolve it. (The person who
   *              this history concerns.)
   */
  public FamilyMemberHistory setPatientTarget(Patient value) {
    this.patientTarget = value;
    return this;
  }

  /**
   * @return {@link #date} (The date (and possibly time) when the family member
   *         history was taken.). This is the underlying object with id, value and
   *         extensions. The accessor "getDate" gives direct access to the value
   */
  public DateTimeType getDateElement() {
    if (this.date == null)
      if (Configuration.errorOnAutoCreate())
        throw new Error("Attempt to auto-create FamilyMemberHistory.date");
      else if (Configuration.doAutoCreate())
        this.date = new DateTimeType(); // bb
    return this.date;
  }

  public boolean hasDateElement() {
    return this.date != null && !this.date.isEmpty();
  }

  public boolean hasDate() {
    return this.date != null && !this.date.isEmpty();
  }

  /**
   * @param value {@link #date} (The date (and possibly time) when the family
   *              member history was taken.). This is the underlying object with
   *              id, value and extensions. The accessor "getDate" gives direct
   *              access to the value
   */
  public FamilyMemberHistory setDateElement(DateTimeType value) {
    this.date = value;
    return this;
  }

  /**
   * @return The date (and possibly time) when the family member history was
   *         taken.
   */
  public Date getDate() {
    return this.date == null ? null : this.date.getValue();
  }

  /**
   * @param value The date (and possibly time) when the family member history was
   *              taken.
   */
  public FamilyMemberHistory setDate(Date value) {
    if (value == null)
      this.date = null;
    else {
      if (this.date == null)
        this.date = new DateTimeType();
      this.date.setValue(value);
    }
    return this;
  }

  /**
   * @return {@link #status} (A code specifying a state of a Family Member History
   *         record.). This is the underlying object with id, value and
   *         extensions. The accessor "getStatus" gives direct access to the value
   */
  public Enumeration getStatusElement() {
    if (this.status == null)
      if (Configuration.errorOnAutoCreate())
        throw new Error("Attempt to auto-create FamilyMemberHistory.status");
      else if (Configuration.doAutoCreate())
        this.status = new Enumeration(new FamilyHistoryStatusEnumFactory()); // bb
    return this.status;
  }

  public boolean hasStatusElement() {
    return this.status != null && !this.status.isEmpty();
  }

  public boolean hasStatus() {
    return this.status != null && !this.status.isEmpty();
  }

  /**
   * @param value {@link #status} (A code specifying a state of a Family Member
   *              History record.). This is the underlying object with id, value
   *              and extensions. The accessor "getStatus" gives direct access to
   *              the value
   */
  public FamilyMemberHistory setStatusElement(Enumeration value) {
    this.status = value;
    return this;
  }

  /**
   * @return A code specifying a state of a Family Member History record.
   */
  public FamilyHistoryStatus getStatus() {
    return this.status == null ? null : this.status.getValue();
  }

  /**
   * @param value A code specifying a state of a Family Member History record.
   */
  public FamilyMemberHistory setStatus(FamilyHistoryStatus value) {
    if (this.status == null)
      this.status = new Enumeration(new FamilyHistoryStatusEnumFactory());
    this.status.setValue(value);
    return this;
  }

  /**
   * @return {@link #name} (This will either be a name or a description; e.g.
   *         "Aunt Susan", "my cousin with the red hair".). This is the underlying
   *         object with id, value and extensions. The accessor "getName" gives
   *         direct access to the value
   */
  public StringType getNameElement() {
    if (this.name == null)
      if (Configuration.errorOnAutoCreate())
        throw new Error("Attempt to auto-create FamilyMemberHistory.name");
      else if (Configuration.doAutoCreate())
        this.name = new StringType(); // bb
    return this.name;
  }

  public boolean hasNameElement() {
    return this.name != null && !this.name.isEmpty();
  }

  public boolean hasName() {
    return this.name != null && !this.name.isEmpty();
  }

  /**
   * @param value {@link #name} (This will either be a name or a description; e.g.
   *              "Aunt Susan", "my cousin with the red hair".). This is the
   *              underlying object with id, value and extensions. The accessor
   *              "getName" gives direct access to the value
   */
  public FamilyMemberHistory setNameElement(StringType value) {
    this.name = value;
    return this;
  }

  /**
   * @return This will either be a name or a description; e.g. "Aunt Susan", "my
   *         cousin with the red hair".
   */
  public String getName() {
    return this.name == null ? null : this.name.getValue();
  }

  /**
   * @param value This will either be a name or a description; e.g. "Aunt Susan",
   *              "my cousin with the red hair".
   */
  public FamilyMemberHistory setName(String value) {
    if (Utilities.noString(value))
      this.name = null;
    else {
      if (this.name == null)
        this.name = new StringType();
      this.name.setValue(value);
    }
    return this;
  }

  /**
   * @return {@link #relationship} (The type of relationship this person has to
   *         the patient (father, mother, brother etc.).)
   */
  public CodeableConcept getRelationship() {
    if (this.relationship == null)
      if (Configuration.errorOnAutoCreate())
        throw new Error("Attempt to auto-create FamilyMemberHistory.relationship");
      else if (Configuration.doAutoCreate())
        this.relationship = new CodeableConcept(); // cc
    return this.relationship;
  }

  public boolean hasRelationship() {
    return this.relationship != null && !this.relationship.isEmpty();
  }

  /**
   * @param value {@link #relationship} (The type of relationship this person has
   *              to the patient (father, mother, brother etc.).)
   */
  public FamilyMemberHistory setRelationship(CodeableConcept value) {
    this.relationship = value;
    return this;
  }

  /**
   * @return {@link #gender} (Administrative Gender - the gender that the relative
   *         is considered to have for administration and record keeping
   *         purposes.). This is the underlying object with id, value and
   *         extensions. The accessor "getGender" gives direct access to the value
   */
  public Enumeration getGenderElement() {
    if (this.gender == null)
      if (Configuration.errorOnAutoCreate())
        throw new Error("Attempt to auto-create FamilyMemberHistory.gender");
      else if (Configuration.doAutoCreate())
        this.gender = new Enumeration(new AdministrativeGenderEnumFactory()); // bb
    return this.gender;
  }

  public boolean hasGenderElement() {
    return this.gender != null && !this.gender.isEmpty();
  }

  public boolean hasGender() {
    return this.gender != null && !this.gender.isEmpty();
  }

  /**
   * @param value {@link #gender} (Administrative Gender - the gender that the
   *              relative is considered to have for administration and record
   *              keeping purposes.). This is the underlying object with id, value
   *              and extensions. The accessor "getGender" gives direct access to
   *              the value
   */
  public FamilyMemberHistory setGenderElement(Enumeration value) {
    this.gender = value;
    return this;
  }

  /**
   * @return Administrative Gender - the gender that the relative is considered to
   *         have for administration and record keeping purposes.
   */
  public AdministrativeGender getGender() {
    return this.gender == null ? null : this.gender.getValue();
  }

  /**
   * @param value Administrative Gender - the gender that the relative is
   *              considered to have for administration and record keeping
   *              purposes.
   */
  public FamilyMemberHistory setGender(AdministrativeGender value) {
    if (value == null)
      this.gender = null;
    else {
      if (this.gender == null)
        this.gender = new Enumeration(new AdministrativeGenderEnumFactory());
      this.gender.setValue(value);
    }
    return this;
  }

  /**
   * @return {@link #born} (The actual or approximate date of birth of the
   *         relative.)
   */
  public Type getBorn() {
    return this.born;
  }

  /**
   * @return {@link #born} (The actual or approximate date of birth of the
   *         relative.)
   */
  public Period getBornPeriod() throws FHIRException {
    if (!(this.born instanceof Period))
      throw new FHIRException(
          "Type mismatch: the type Period was expected, but " + this.born.getClass().getName() + " was encountered");
    return (Period) this.born;
  }

  public boolean hasBornPeriod() {
    return this.born instanceof Period;
  }

  /**
   * @return {@link #born} (The actual or approximate date of birth of the
   *         relative.)
   */
  public DateType getBornDateType() throws FHIRException {
    if (!(this.born instanceof DateType))
      throw new FHIRException(
          "Type mismatch: the type DateType was expected, but " + this.born.getClass().getName() + " was encountered");
    return (DateType) this.born;
  }

  public boolean hasBornDateType() {
    return this.born instanceof DateType;
  }

  /**
   * @return {@link #born} (The actual or approximate date of birth of the
   *         relative.)
   */
  public StringType getBornStringType() throws FHIRException {
    if (!(this.born instanceof StringType))
      throw new FHIRException("Type mismatch: the type StringType was expected, but " + this.born.getClass().getName()
          + " was encountered");
    return (StringType) this.born;
  }

  public boolean hasBornStringType() {
    return this.born instanceof StringType;
  }

  public boolean hasBorn() {
    return this.born != null && !this.born.isEmpty();
  }

  /**
   * @param value {@link #born} (The actual or approximate date of birth of the
   *              relative.)
   */
  public FamilyMemberHistory setBorn(Type value) {
    this.born = value;
    return this;
  }

  /**
   * @return {@link #age} (The actual or approximate age of the relative at the
   *         time the family member history is recorded.)
   */
  public Type getAge() {
    return this.age;
  }

  /**
   * @return {@link #age} (The actual or approximate age of the relative at the
   *         time the family member history is recorded.)
   */
  public Age getAgeAge() throws FHIRException {
    if (!(this.age instanceof Age))
      throw new FHIRException(
          "Type mismatch: the type Age was expected, but " + this.age.getClass().getName() + " was encountered");
    return (Age) this.age;
  }

  public boolean hasAgeAge() {
    return this.age instanceof Age;
  }

  /**
   * @return {@link #age} (The actual or approximate age of the relative at the
   *         time the family member history is recorded.)
   */
  public Range getAgeRange() throws FHIRException {
    if (!(this.age instanceof Range))
      throw new FHIRException(
          "Type mismatch: the type Range was expected, but " + this.age.getClass().getName() + " was encountered");
    return (Range) this.age;
  }

  public boolean hasAgeRange() {
    return this.age instanceof Range;
  }

  /**
   * @return {@link #age} (The actual or approximate age of the relative at the
   *         time the family member history is recorded.)
   */
  public StringType getAgeStringType() throws FHIRException {
    if (!(this.age instanceof StringType))
      throw new FHIRException(
          "Type mismatch: the type StringType was expected, but " + this.age.getClass().getName() + " was encountered");
    return (StringType) this.age;
  }

  public boolean hasAgeStringType() {
    return this.age instanceof StringType;
  }

  public boolean hasAge() {
    return this.age != null && !this.age.isEmpty();
  }

  /**
   * @param value {@link #age} (The actual or approximate age of the relative at
   *              the time the family member history is recorded.)
   */
  public FamilyMemberHistory setAge(Type value) {
    this.age = value;
    return this;
  }

  /**
   * @return {@link #deceased} (Deceased flag or the actual or approximate age of
   *         the relative at the time of death for the family member history
   *         record.)
   */
  public Type getDeceased() {
    return this.deceased;
  }

  /**
   * @return {@link #deceased} (Deceased flag or the actual or approximate age of
   *         the relative at the time of death for the family member history
   *         record.)
   */
  public BooleanType getDeceasedBooleanType() throws FHIRException {
    if (!(this.deceased instanceof BooleanType))
      throw new FHIRException("Type mismatch: the type BooleanType was expected, but "
          + this.deceased.getClass().getName() + " was encountered");
    return (BooleanType) this.deceased;
  }

  public boolean hasDeceasedBooleanType() {
    return this.deceased instanceof BooleanType;
  }

  /**
   * @return {@link #deceased} (Deceased flag or the actual or approximate age of
   *         the relative at the time of death for the family member history
   *         record.)
   */
  public Age getDeceasedAge() throws FHIRException {
    if (!(this.deceased instanceof Age))
      throw new FHIRException(
          "Type mismatch: the type Age was expected, but " + this.deceased.getClass().getName() + " was encountered");
    return (Age) this.deceased;
  }

  public boolean hasDeceasedAge() {
    return this.deceased instanceof Age;
  }

  /**
   * @return {@link #deceased} (Deceased flag or the actual or approximate age of
   *         the relative at the time of death for the family member history
   *         record.)
   */
  public Range getDeceasedRange() throws FHIRException {
    if (!(this.deceased instanceof Range))
      throw new FHIRException(
          "Type mismatch: the type Range was expected, but " + this.deceased.getClass().getName() + " was encountered");
    return (Range) this.deceased;
  }

  public boolean hasDeceasedRange() {
    return this.deceased instanceof Range;
  }

  /**
   * @return {@link #deceased} (Deceased flag or the actual or approximate age of
   *         the relative at the time of death for the family member history
   *         record.)
   */
  public DateType getDeceasedDateType() throws FHIRException {
    if (!(this.deceased instanceof DateType))
      throw new FHIRException("Type mismatch: the type DateType was expected, but " + this.deceased.getClass().getName()
          + " was encountered");
    return (DateType) this.deceased;
  }

  public boolean hasDeceasedDateType() {
    return this.deceased instanceof DateType;
  }

  /**
   * @return {@link #deceased} (Deceased flag or the actual or approximate age of
   *         the relative at the time of death for the family member history
   *         record.)
   */
  public StringType getDeceasedStringType() throws FHIRException {
    if (!(this.deceased instanceof StringType))
      throw new FHIRException("Type mismatch: the type StringType was expected, but "
          + this.deceased.getClass().getName() + " was encountered");
    return (StringType) this.deceased;
  }

  public boolean hasDeceasedStringType() {
    return this.deceased instanceof StringType;
  }

  public boolean hasDeceased() {
    return this.deceased != null && !this.deceased.isEmpty();
  }

  /**
   * @param value {@link #deceased} (Deceased flag or the actual or approximate
   *              age of the relative at the time of death for the family member
   *              history record.)
   */
  public FamilyMemberHistory setDeceased(Type value) {
    this.deceased = value;
    return this;
  }

  /**
   * @return {@link #note} (This property allows a non condition-specific note to
   *         the made about the related person. Ideally, the note would be in the
   *         condition property, but this is not always possible.)
   */
  public Annotation getNote() {
    if (this.note == null)
      if (Configuration.errorOnAutoCreate())
        throw new Error("Attempt to auto-create FamilyMemberHistory.note");
      else if (Configuration.doAutoCreate())
        this.note = new Annotation(); // cc
    return this.note;
  }

  public boolean hasNote() {
    return this.note != null && !this.note.isEmpty();
  }

  /**
   * @param value {@link #note} (This property allows a non condition-specific
   *              note to the made about the related person. Ideally, the note
   *              would be in the condition property, but this is not always
   *              possible.)
   */
  public FamilyMemberHistory setNote(Annotation value) {
    this.note = value;
    return this;
  }

  /**
   * @return {@link #condition} (The significant Conditions (or condition) that
   *         the family member had. This is a repeating section to allow a system
   *         to represent more than one condition per resource, though there is
   *         nothing stopping multiple resources - one per condition.)
   */
  public List getCondition() {
    if (this.condition == null)
      this.condition = new ArrayList();
    return this.condition;
  }

  public boolean hasCondition() {
    if (this.condition == null)
      return false;
    for (FamilyMemberHistoryConditionComponent item : this.condition)
      if (!item.isEmpty())
        return true;
    return false;
  }

  /**
   * @return {@link #condition} (The significant Conditions (or condition) that
   *         the family member had. This is a repeating section to allow a system
   *         to represent more than one condition per resource, though there is
   *         nothing stopping multiple resources - one per condition.)
   */
  // syntactic sugar
  public FamilyMemberHistoryConditionComponent addCondition() { // 3
    FamilyMemberHistoryConditionComponent t = new FamilyMemberHistoryConditionComponent();
    if (this.condition == null)
      this.condition = new ArrayList();
    this.condition.add(t);
    return t;
  }

  // syntactic sugar
  public FamilyMemberHistory addCondition(FamilyMemberHistoryConditionComponent t) { // 3
    if (t == null)
      return this;
    if (this.condition == null)
      this.condition = new ArrayList();
    this.condition.add(t);
    return this;
  }

  protected void listChildren(List childrenList) {
    super.listChildren(childrenList);
    childrenList.add(new Property("identifier", "Identifier",
        "This records identifiers associated with this family member history record that are defined by business processes and/ or used to refer to it when a direct URL reference to the resource itself is not appropriate (e.g. in CDA documents, or in written / printed documentation).",
        0, java.lang.Integer.MAX_VALUE, identifier));
    childrenList.add(new Property("patient", "Reference(Patient)", "The person who this history concerns.", 0,
        java.lang.Integer.MAX_VALUE, patient));
    childrenList
        .add(new Property("date", "dateTime", "The date (and possibly time) when the family member history was taken.",
            0, java.lang.Integer.MAX_VALUE, date));
    childrenList.add(new Property("status", "code", "A code specifying a state of a Family Member History record.", 0,
        java.lang.Integer.MAX_VALUE, status));
    childrenList.add(new Property("name", "string",
        "This will either be a name or a description; e.g. \"Aunt Susan\", \"my cousin with the red hair\".", 0,
        java.lang.Integer.MAX_VALUE, name));
    childrenList.add(new Property("relationship", "CodeableConcept",
        "The type of relationship this person has to the patient (father, mother, brother etc.).", 0,
        java.lang.Integer.MAX_VALUE, relationship));
    childrenList.add(new Property("gender", "code",
        "Administrative Gender - the gender that the relative is considered to have for administration and record keeping purposes.",
        0, java.lang.Integer.MAX_VALUE, gender));
    childrenList.add(new Property("born[x]", "Period|date|string",
        "The actual or approximate date of birth of the relative.", 0, java.lang.Integer.MAX_VALUE, born));
    childrenList.add(new Property("age[x]", "Age|Range|string",
        "The actual or approximate age of the relative at the time the family member history is recorded.", 0,
        java.lang.Integer.MAX_VALUE, age));
    childrenList.add(new Property("deceased[x]", "boolean|Age|Range|date|string",
        "Deceased flag or the actual or approximate age of the relative at the time of death for the family member history record.",
        0, java.lang.Integer.MAX_VALUE, deceased));
    childrenList.add(new Property("note", "Annotation",
        "This property allows a non condition-specific note to the made about the related person. Ideally, the note would be in the condition property, but this is not always possible.",
        0, java.lang.Integer.MAX_VALUE, note));
    childrenList.add(new Property("condition", "",
        "The significant Conditions (or condition) that the family member had. This is a repeating section to allow a system to represent more than one condition per resource, though there is nothing stopping multiple resources - one per condition.",
        0, java.lang.Integer.MAX_VALUE, condition));
  }

  @Override
  public void setProperty(String name, Base value) throws FHIRException {
    if (name.equals("identifier"))
      this.getIdentifier().add(castToIdentifier(value));
    else if (name.equals("patient"))
      this.patient = castToReference(value); // Reference
    else if (name.equals("date"))
      this.date = castToDateTime(value); // DateTimeType
    else if (name.equals("status"))
      this.status = new FamilyHistoryStatusEnumFactory().fromType(value); // Enumeration
    else if (name.equals("name"))
      this.name = castToString(value); // StringType
    else if (name.equals("relationship"))
      this.relationship = castToCodeableConcept(value); // CodeableConcept
    else if (name.equals("gender"))
      this.gender = new AdministrativeGenderEnumFactory().fromType(value); // Enumeration
    else if (name.equals("born[x]"))
      this.born = (Type) value; // Type
    else if (name.equals("age[x]"))
      this.age = (Type) value; // Type
    else if (name.equals("deceased[x]"))
      this.deceased = (Type) value; // Type
    else if (name.equals("note"))
      this.note = castToAnnotation(value); // Annotation
    else if (name.equals("condition"))
      this.getCondition().add((FamilyMemberHistoryConditionComponent) value);
    else
      super.setProperty(name, value);
  }

  @Override
  public Base addChild(String name) throws FHIRException {
    if (name.equals("identifier")) {
      return addIdentifier();
    } else if (name.equals("patient")) {
      this.patient = new Reference();
      return this.patient;
    } else if (name.equals("date")) {
      throw new FHIRException("Cannot call addChild on a singleton property FamilyMemberHistory.date");
    } else if (name.equals("status")) {
      throw new FHIRException("Cannot call addChild on a singleton property FamilyMemberHistory.status");
    } else if (name.equals("name")) {
      throw new FHIRException("Cannot call addChild on a singleton property FamilyMemberHistory.name");
    } else if (name.equals("relationship")) {
      this.relationship = new CodeableConcept();
      return this.relationship;
    } else if (name.equals("gender")) {
      throw new FHIRException("Cannot call addChild on a singleton property FamilyMemberHistory.gender");
    } else if (name.equals("bornPeriod")) {
      this.born = new Period();
      return this.born;
    } else if (name.equals("bornDate")) {
      this.born = new DateType();
      return this.born;
    } else if (name.equals("bornString")) {
      this.born = new StringType();
      return this.born;
    } else if (name.equals("ageAge")) {
      this.age = new Age();
      return this.age;
    } else if (name.equals("ageRange")) {
      this.age = new Range();
      return this.age;
    } else if (name.equals("ageString")) {
      this.age = new StringType();
      return this.age;
    } else if (name.equals("deceasedBoolean")) {
      this.deceased = new BooleanType();
      return this.deceased;
    } else if (name.equals("deceasedAge")) {
      this.deceased = new Age();
      return this.deceased;
    } else if (name.equals("deceasedRange")) {
      this.deceased = new Range();
      return this.deceased;
    } else if (name.equals("deceasedDate")) {
      this.deceased = new DateType();
      return this.deceased;
    } else if (name.equals("deceasedString")) {
      this.deceased = new StringType();
      return this.deceased;
    } else if (name.equals("note")) {
      this.note = new Annotation();
      return this.note;
    } else if (name.equals("condition")) {
      return addCondition();
    } else
      return super.addChild(name);
  }

  public String fhirType() {
    return "FamilyMemberHistory";

  }

  public FamilyMemberHistory copy() {
    FamilyMemberHistory dst = new FamilyMemberHistory();
    copyValues(dst);
    if (identifier != null) {
      dst.identifier = new ArrayList();
      for (Identifier i : identifier)
        dst.identifier.add(i.copy());
    }
    ;
    dst.patient = patient == null ? null : patient.copy();
    dst.date = date == null ? null : date.copy();
    dst.status = status == null ? null : status.copy();
    dst.name = name == null ? null : name.copy();
    dst.relationship = relationship == null ? null : relationship.copy();
    dst.gender = gender == null ? null : gender.copy();
    dst.born = born == null ? null : born.copy();
    dst.age = age == null ? null : age.copy();
    dst.deceased = deceased == null ? null : deceased.copy();
    dst.note = note == null ? null : note.copy();
    if (condition != null) {
      dst.condition = new ArrayList();
      for (FamilyMemberHistoryConditionComponent i : condition)
        dst.condition.add(i.copy());
    }
    ;
    return dst;
  }

  protected FamilyMemberHistory typedCopy() {
    return copy();
  }

  @Override
  public boolean equalsDeep(Base other) {
    if (!super.equalsDeep(other))
      return false;
    if (!(other instanceof FamilyMemberHistory))
      return false;
    FamilyMemberHistory o = (FamilyMemberHistory) other;
    return compareDeep(identifier, o.identifier, true) && compareDeep(patient, o.patient, true)
        && compareDeep(date, o.date, true) && compareDeep(status, o.status, true) && compareDeep(name, o.name, true)
        && compareDeep(relationship, o.relationship, true) && compareDeep(gender, o.gender, true)
        && compareDeep(born, o.born, true) && compareDeep(age, o.age, true) && compareDeep(deceased, o.deceased, true)
        && compareDeep(note, o.note, true) && compareDeep(condition, o.condition, true);
  }

  @Override
  public boolean equalsShallow(Base other) {
    if (!super.equalsShallow(other))
      return false;
    if (!(other instanceof FamilyMemberHistory))
      return false;
    FamilyMemberHistory o = (FamilyMemberHistory) other;
    return compareValues(date, o.date, true) && compareValues(status, o.status, true)
        && compareValues(name, o.name, true) && compareValues(gender, o.gender, true);
  }

  public boolean isEmpty() {
    return super.isEmpty() && (identifier == null || identifier.isEmpty()) && (patient == null || patient.isEmpty())
        && (date == null || date.isEmpty()) && (status == null || status.isEmpty()) && (name == null || name.isEmpty())
        && (relationship == null || relationship.isEmpty()) && (gender == null || gender.isEmpty())
        && (born == null || born.isEmpty()) && (age == null || age.isEmpty())
        && (deceased == null || deceased.isEmpty()) && (note == null || note.isEmpty())
        && (condition == null || condition.isEmpty());
  }

  @Override
  public ResourceType getResourceType() {
    return ResourceType.FamilyMemberHistory;
  }

  @SearchParamDefinition(name = "date", path = "FamilyMemberHistory.date", description = "When history was captured/updated", type = "date")
  public static final String SP_DATE = "date";
  @SearchParamDefinition(name = "identifier", path = "FamilyMemberHistory.identifier", description = "A search by a record identifier", type = "token")
  public static final String SP_IDENTIFIER = "identifier";
  @SearchParamDefinition(name = "code", path = "FamilyMemberHistory.condition.code", description = "A search by a condition code", type = "token")
  public static final String SP_CODE = "code";
  @SearchParamDefinition(name = "gender", path = "FamilyMemberHistory.gender", description = "A search by a gender code of a family member", type = "token")
  public static final String SP_GENDER = "gender";
  @SearchParamDefinition(name = "patient", path = "FamilyMemberHistory.patient", description = "The identity of a subject to list family member history items for", type = "reference")
  public static final String SP_PATIENT = "patient";
  @SearchParamDefinition(name = "relationship", path = "FamilyMemberHistory.relationship", description = "A search by a relationship type", type = "token")
  public static final String SP_RELATIONSHIP = "relationship";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy