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

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

Go to download

Builds the hapi fhir r4. Requires hapi-fhir-base and hapi-fhir-utilities be built first and be excluded from any other poms requiring it.

The newest version!
package org.hl7.fhir.r4.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 Tue, May 12, 2020 07:26+1000 for FHIR v4.0.1
import java.util.ArrayList;
import java.util.Date;
import java.util.List;

import org.hl7.fhir.exceptions.FHIRException;
import org.hl7.fhir.instance.model.api.IBaseBackboneElement;
import org.hl7.fhir.utilities.Utilities;

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;

/**
 * Significant health 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/StructureDefinition/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 available related health information is captured as of the date (and
     * possibly time) when the family member history was taken.
     */
    COMPLETED,
    /**
     * This instance should not have been part of this patient's medical record.
     */
    ENTEREDINERROR,
    /**
     * Health information for this family member is unavailable/unknown.
     */
    HEALTHUNKNOWN,
    /**
     * added to help the parsers with the generic types
     */
    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;
      if (Configuration.isAcceptInvalidEnums())
        return null;
      else
        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 available related health information is captured as of the date (and possibly time) when the family member history was taken.";
      case ENTEREDINERROR:
        return "This instance should not have been part of this patient's medical record.";
      case HEALTHUNKNOWN:
        return "Health information for this family member 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(PrimitiveType code) throws FHIRException {
      if (code == null)
        return null;
      if (code.isEmpty())
        return new Enumeration(this, FamilyHistoryStatus.NULL, code);
      String codeString = code.asStringValue();
      if (codeString == null || "".equals(codeString))
        return new Enumeration(this, FamilyHistoryStatus.NULL, code);
      if ("partial".equals(codeString))
        return new Enumeration(this, FamilyHistoryStatus.PARTIAL, code);
      if ("completed".equals(codeString))
        return new Enumeration(this, FamilyHistoryStatus.COMPLETED, code);
      if ("entered-in-error".equals(codeString))
        return new Enumeration(this, FamilyHistoryStatus.ENTEREDINERROR, code);
      if ("health-unknown".equals(codeString))
        return new Enumeration(this, FamilyHistoryStatus.HEALTHUNKNOWN, code);
      throw new FHIRException("Unknown FamilyHistoryStatus code '" + codeString + "'");
    }

    public String toCode(FamilyHistoryStatus code) {
      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 "?";
    }

    public String toSystem(FamilyHistoryStatus code) {
      return code.getSystem();
    }
  }

  @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.")
    @ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://hl7.org/fhir/ValueSet/condition-code")
    protected CodeableConcept code;

    /**
     * Indicates what happened following the 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 following the condition.  If the condition resulted in death, deceased date is captured on the relation.")
    @ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://hl7.org/fhir/ValueSet/condition-outcome")
    protected CodeableConcept outcome;

    /**
     * This condition contributed to the cause of death of the related person. If
     * contributedToDeath is not populated, then it is unknown.
     */
    @Child(name = "contributedToDeath", type = {
        BooleanType.class }, order = 3, min = 0, max = 1, modifier = false, summary = false)
    @Description(shortDefinition = "Whether the condition contributed to the cause of death", formalDefinition = "This condition contributed to the cause of death of the related person. If contributedToDeath is not populated, then it is unknown.")
    protected BooleanType contributedToDeath;

    /**
     * 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 = 4, 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 = 5, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = false)
    @Description(shortDefinition = "Extra information about condition", formalDefinition = "An area where general notes can be placed about this specific condition.")
    protected List note;

    private static final long serialVersionUID = 1230182301L;

    /**
     * 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 following the 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 following the
     *              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 #contributedToDeath} (This condition contributed to the cause
     *         of death of the related person. If contributedToDeath is not
     *         populated, then it is unknown.). This is the underlying object with
     *         id, value and extensions. The accessor "getContributedToDeath" gives
     *         direct access to the value
     */
    public BooleanType getContributedToDeathElement() {
      if (this.contributedToDeath == null)
        if (Configuration.errorOnAutoCreate())
          throw new Error("Attempt to auto-create FamilyMemberHistoryConditionComponent.contributedToDeath");
        else if (Configuration.doAutoCreate())
          this.contributedToDeath = new BooleanType(); // bb
      return this.contributedToDeath;
    }

    public boolean hasContributedToDeathElement() {
      return this.contributedToDeath != null && !this.contributedToDeath.isEmpty();
    }

    public boolean hasContributedToDeath() {
      return this.contributedToDeath != null && !this.contributedToDeath.isEmpty();
    }

    /**
     * @param value {@link #contributedToDeath} (This condition contributed to the
     *              cause of death of the related person. If contributedToDeath is
     *              not populated, then it is unknown.). This is the underlying
     *              object with id, value and extensions. The accessor
     *              "getContributedToDeath" gives direct access to the value
     */
    public FamilyMemberHistoryConditionComponent setContributedToDeathElement(BooleanType value) {
      this.contributedToDeath = value;
      return this;
    }

    /**
     * @return This condition contributed to the cause of death of the related
     *         person. If contributedToDeath is not populated, then it is unknown.
     */
    public boolean getContributedToDeath() {
      return this.contributedToDeath == null || this.contributedToDeath.isEmpty() ? false
          : this.contributedToDeath.getValue();
    }

    /**
     * @param value This condition contributed to the cause of death of the related
     *              person. If contributedToDeath is not populated, then it is
     *              unknown.
     */
    public FamilyMemberHistoryConditionComponent setContributedToDeath(boolean value) {
      if (this.contributedToDeath == null)
        this.contributedToDeath = new BooleanType();
      this.contributedToDeath.setValue(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 == null)
        this.onset = new Age();
      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 != null && 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 == null)
        this.onset = new Range();
      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 != null && 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 == null)
        this.onset = new Period();
      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 != null && 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 == null)
        this.onset = new StringType();
      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 != null && 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) {
      if (value != null && !(value instanceof Age || value instanceof Range || value instanceof Period
          || value instanceof StringType))
        throw new Error("Not the right type for FamilyMemberHistory.condition.onset[x]: " + value.fhirType());
      this.onset = value;
      return this;
    }

    /**
     * @return {@link #note} (An area where general notes can be placed about this
     *         specific condition.)
     */
    public List getNote() {
      if (this.note == null)
        this.note = new ArrayList();
      return this.note;
    }

    /**
     * @return Returns a reference to this for easy method chaining
     */
    public FamilyMemberHistoryConditionComponent setNote(List theNote) {
      this.note = theNote;
      return this;
    }

    public boolean hasNote() {
      if (this.note == null)
        return false;
      for (Annotation item : this.note)
        if (!item.isEmpty())
          return true;
      return false;
    }

    public Annotation addNote() { // 3
      Annotation t = new Annotation();
      if (this.note == null)
        this.note = new ArrayList();
      this.note.add(t);
      return t;
    }

    public FamilyMemberHistoryConditionComponent addNote(Annotation t) { // 3
      if (t == null)
        return this;
      if (this.note == null)
        this.note = new ArrayList();
      this.note.add(t);
      return this;
    }

    /**
     * @return The first repetition of repeating field {@link #note}, creating it if
     *         it does not already exist
     */
    public Annotation getNoteFirstRep() {
      if (getNote().isEmpty()) {
        addNote();
      }
      return getNote().get(0);
    }

    protected void listChildren(List children) {
      super.listChildren(children);
      children.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, 1, code));
      children.add(new Property("outcome", "CodeableConcept",
          "Indicates what happened following the condition.  If the condition resulted in death, deceased date is captured on the relation.",
          0, 1, outcome));
      children.add(new Property("contributedToDeath", "boolean",
          "This condition contributed to the cause of death of the related person. If contributedToDeath is not populated, then it is unknown.",
          0, 1, contributedToDeath));
      children.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, 1, onset));
      children.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 Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
      switch (_hash) {
      case 3059181:
        /* code */ return 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, 1, code);
      case -1106507950:
        /* outcome */ return new Property("outcome", "CodeableConcept",
            "Indicates what happened following the condition.  If the condition resulted in death, deceased date is captured on the relation.",
            0, 1, outcome);
      case -363644638:
        /* contributedToDeath */ return new Property("contributedToDeath", "boolean",
            "This condition contributed to the cause of death of the related person. If contributedToDeath is not populated, then it is unknown.",
            0, 1, contributedToDeath);
      case -1886216323:
        /* onset[x] */ return 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, 1, onset);
      case 105901603:
        /* onset */ return 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, 1, onset);
      case -1886241828:
        /* onsetAge */ return 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, 1, onset);
      case -186664742:
        /* onsetRange */ return 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, 1, onset);
      case -1545082428:
        /* onsetPeriod */ return 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, 1, onset);
      case -1445342188:
        /* onsetString */ return 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, 1, onset);
      case 3387378:
        /* note */ return new Property("note", "Annotation",
            "An area where general notes can be placed about this specific condition.", 0, java.lang.Integer.MAX_VALUE,
            note);
      default:
        return super.getNamedProperty(_hash, _name, _checkValid);
      }

    }

    @Override
    public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
      switch (hash) {
      case 3059181:
        /* code */ return this.code == null ? new Base[0] : new Base[] { this.code }; // CodeableConcept
      case -1106507950:
        /* outcome */ return this.outcome == null ? new Base[0] : new Base[] { this.outcome }; // CodeableConcept
      case -363644638:
        /* contributedToDeath */ return this.contributedToDeath == null ? new Base[0]
            : new Base[] { this.contributedToDeath }; // BooleanType
      case 105901603:
        /* onset */ return this.onset == null ? new Base[0] : new Base[] { this.onset }; // Type
      case 3387378:
        /* note */ return this.note == null ? new Base[0] : this.note.toArray(new Base[this.note.size()]); // Annotation
      default:
        return super.getProperty(hash, name, checkValid);
      }

    }

    @Override
    public Base setProperty(int hash, String name, Base value) throws FHIRException {
      switch (hash) {
      case 3059181: // code
        this.code = castToCodeableConcept(value); // CodeableConcept
        return value;
      case -1106507950: // outcome
        this.outcome = castToCodeableConcept(value); // CodeableConcept
        return value;
      case -363644638: // contributedToDeath
        this.contributedToDeath = castToBoolean(value); // BooleanType
        return value;
      case 105901603: // onset
        this.onset = castToType(value); // Type
        return value;
      case 3387378: // note
        this.getNote().add(castToAnnotation(value)); // Annotation
        return value;
      default:
        return super.setProperty(hash, name, value);
      }

    }

    @Override
    public Base 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("contributedToDeath")) {
        this.contributedToDeath = castToBoolean(value); // BooleanType
      } else if (name.equals("onset[x]")) {
        this.onset = castToType(value); // Type
      } else if (name.equals("note")) {
        this.getNote().add(castToAnnotation(value));
      } else
        return super.setProperty(name, value);
      return value;
    }

  @Override
  public void removeChild(String name, Base value) throws FHIRException {
      if (name.equals("code")) {
        this.code = null;
      } else if (name.equals("outcome")) {
        this.outcome = null;
      } else if (name.equals("contributedToDeath")) {
        this.contributedToDeath = null;
      } else if (name.equals("onset[x]")) {
        this.onset = null;
      } else if (name.equals("note")) {
        this.getNote().remove(castToAnnotation(value));
      } else
        super.removeChild(name, value);
      
    }

    @Override
    public Base makeProperty(int hash, String name) throws FHIRException {
      switch (hash) {
      case 3059181:
        return getCode();
      case -1106507950:
        return getOutcome();
      case -363644638:
        return getContributedToDeathElement();
      case -1886216323:
        return getOnset();
      case 105901603:
        return getOnset();
      case 3387378:
        return addNote();
      default:
        return super.makeProperty(hash, name);
      }

    }

    @Override
    public String[] getTypesForProperty(int hash, String name) throws FHIRException {
      switch (hash) {
      case 3059181:
        /* code */ return new String[] { "CodeableConcept" };
      case -1106507950:
        /* outcome */ return new String[] { "CodeableConcept" };
      case -363644638:
        /* contributedToDeath */ return new String[] { "boolean" };
      case 105901603:
        /* onset */ return new String[] { "Age", "Range", "Period", "string" };
      case 3387378:
        /* note */ return new String[] { "Annotation" };
      default:
        return super.getTypesForProperty(hash, name);
      }

    }

    @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("contributedToDeath")) {
        throw new FHIRException("Cannot call addChild on a singleton property FamilyMemberHistory.contributedToDeath");
      } 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")) {
        return addNote();
      } else
        return super.addChild(name);
    }

    public FamilyMemberHistoryConditionComponent copy() {
      FamilyMemberHistoryConditionComponent dst = new FamilyMemberHistoryConditionComponent();
      copyValues(dst);
      return dst;
    }

    public void copyValues(FamilyMemberHistoryConditionComponent dst) {
      super.copyValues(dst);
      dst.code = code == null ? null : code.copy();
      dst.outcome = outcome == null ? null : outcome.copy();
      dst.contributedToDeath = contributedToDeath == null ? null : contributedToDeath.copy();
      dst.onset = onset == null ? null : onset.copy();
      if (note != null) {
        dst.note = new ArrayList();
        for (Annotation i : note)
          dst.note.add(i.copy());
      }
      ;
    }

    @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(contributedToDeath, o.contributedToDeath, 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 compareValues(contributedToDeath, o.contributedToDeath, true);
    }

    public boolean isEmpty() {
      return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(code, outcome, contributedToDeath, onset, note);
    }

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

    }

  }

  /**
   * Business identifiers assigned to this family member history by the performer
   * or other systems which remain constant as the resource is updated and
   * propagates from server to server.
   */
  @Child(name = "identifier", type = {
      Identifier.class }, order = 0, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = true)
  @Description(shortDefinition = "External Id(s) for this record", formalDefinition = "Business identifiers assigned to this family member history by the performer or other systems which remain constant as the resource is updated and propagates from server to server.")
  protected List identifier;

  /**
   * The URL pointing to a FHIR-defined protocol, guideline, orderset or other
   * definition that is adhered to in whole or in part by this
   * FamilyMemberHistory.
   */
  @Child(name = "instantiatesCanonical", type = {
      CanonicalType.class }, order = 1, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = true)
  @Description(shortDefinition = "Instantiates FHIR protocol or definition", formalDefinition = "The URL pointing to a FHIR-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by this FamilyMemberHistory.")
  protected List instantiatesCanonical;

  /**
   * The URL pointing to an externally maintained protocol, guideline, orderset or
   * other definition that is adhered to in whole or in part by this
   * FamilyMemberHistory.
   */
  @Child(name = "instantiatesUri", type = {
      UriType.class }, order = 2, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = true)
  @Description(shortDefinition = "Instantiates external protocol or definition", formalDefinition = "The URL pointing to an externally maintained protocol, guideline, orderset or other definition that is adhered to in whole or in part by this FamilyMemberHistory.")
  protected List instantiatesUri;

  /**
   * A code specifying the status of the record of the family history of a
   * specific family member.
   */
  @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 the status of the record of the family history of a specific family member.")
  @ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://hl7.org/fhir/ValueSet/history-status")
  protected Enumeration status;

  /**
   * Describes why the family member's history is not available.
   */
  @Child(name = "dataAbsentReason", type = {
      CodeableConcept.class }, order = 4, min = 0, max = 1, modifier = false, summary = true)
  @Description(shortDefinition = "subject-unknown | withheld | unable-to-obtain | deferred", formalDefinition = "Describes why the family member's history is not available.")
  @ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://hl7.org/fhir/ValueSet/history-absent-reason")
  protected CodeableConcept dataAbsentReason;

  /**
   * The person who this history concerns.
   */
  @Child(name = "patient", type = { Patient.class }, order = 5, 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 recorded or
   * last updated.
   */
  @Child(name = "date", type = { DateTimeType.class }, order = 6, min = 0, max = 1, modifier = false, summary = true)
  @Description(shortDefinition = "When history was recorded or last updated", formalDefinition = "The date (and possibly time) when the family member history was recorded or last updated.")
  protected DateTimeType date;

  /**
   * 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 = 7, 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 = 8, 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.).")
  @ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://terminology.hl7.org/ValueSet/v3-FamilyMember")
  protected CodeableConcept relationship;

  /**
   * The birth sex of the family member.
   */
  @Child(name = "sex", type = { CodeableConcept.class }, order = 9, min = 0, max = 1, modifier = false, summary = true)
  @Description(shortDefinition = "male | female | other | unknown", formalDefinition = "The birth sex of the family member.")
  @ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://hl7.org/fhir/ValueSet/administrative-gender")
  protected CodeableConcept sex;

  /**
   * The actual or approximate date of birth of the relative.
   */
  @Child(name = "born", type = { Period.class, DateType.class,
      StringType.class }, order = 10, 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 age of the relative at the time the family member history is recorded.
   */
  @Child(name = "age", type = { Age.class, Range.class,
      StringType.class }, order = 11, min = 0, max = 1, modifier = false, summary = true)
  @Description(shortDefinition = "(approximate) age", formalDefinition = "The age of the relative at the time the family member history is recorded.")
  protected Type age;

  /**
   * If true, indicates that the age value specified is an estimated value.
   */
  @Child(name = "estimatedAge", type = {
      BooleanType.class }, order = 12, min = 0, max = 1, modifier = false, summary = true)
  @Description(shortDefinition = "Age is estimated?", formalDefinition = "If true, indicates that the age value specified is an estimated value.")
  protected BooleanType estimatedAge;

  /**
   * 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 = 13, min = 0, max = 1, modifier = false, summary = true)
  @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;

  /**
   * Describes why the family member history occurred in coded or textual form.
   */
  @Child(name = "reasonCode", type = {
      CodeableConcept.class }, order = 14, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = true)
  @Description(shortDefinition = "Why was family member history performed?", formalDefinition = "Describes why the family member history occurred in coded or textual form.")
  @ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://hl7.org/fhir/ValueSet/clinical-findings")
  protected List reasonCode;

  /**
   * Indicates a Condition, Observation, AllergyIntolerance, or
   * QuestionnaireResponse that justifies this family member history event.
   */
  @Child(name = "reasonReference", type = { Condition.class, Observation.class, AllergyIntolerance.class,
      QuestionnaireResponse.class, DiagnosticReport.class,
      DocumentReference.class }, order = 15, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = true)
  @Description(shortDefinition = "Why was family member history performed?", formalDefinition = "Indicates a Condition, Observation, AllergyIntolerance, or QuestionnaireResponse that justifies this family member history event.")
  protected List reasonReference;
  /**
   * The actual objects that are the target of the reference (Indicates a
   * Condition, Observation, AllergyIntolerance, or QuestionnaireResponse that
   * justifies this family member history event.)
   */
  protected List reasonReferenceTarget;

  /**
   * 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 = 16, min = 0, max = Child.MAX_UNLIMITED, 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 List 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 = 17, 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 = -455261406L;

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

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

  /**
   * @return {@link #identifier} (Business identifiers assigned to this family
   *         member history by the performer or other systems which remain
   *         constant as the resource is updated and propagates from server to
   *         server.)
   */
  public List getIdentifier() {
    if (this.identifier == null)
      this.identifier = new ArrayList();
    return this.identifier;
  }

  /**
   * @return Returns a reference to this for easy method chaining
   */
  public FamilyMemberHistory setIdentifier(List theIdentifier) {
    this.identifier = theIdentifier;
    return this;
  }

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

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

  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 The first repetition of repeating field {@link #identifier}, creating
   *         it if it does not already exist
   */
  public Identifier getIdentifierFirstRep() {
    if (getIdentifier().isEmpty()) {
      addIdentifier();
    }
    return getIdentifier().get(0);
  }

  /**
   * @return {@link #instantiatesCanonical} (The URL pointing to a FHIR-defined
   *         protocol, guideline, orderset or other definition that is adhered to
   *         in whole or in part by this FamilyMemberHistory.)
   */
  public List getInstantiatesCanonical() {
    if (this.instantiatesCanonical == null)
      this.instantiatesCanonical = new ArrayList();
    return this.instantiatesCanonical;
  }

  /**
   * @return Returns a reference to this for easy method chaining
   */
  public FamilyMemberHistory setInstantiatesCanonical(List theInstantiatesCanonical) {
    this.instantiatesCanonical = theInstantiatesCanonical;
    return this;
  }

  public boolean hasInstantiatesCanonical() {
    if (this.instantiatesCanonical == null)
      return false;
    for (CanonicalType item : this.instantiatesCanonical)
      if (!item.isEmpty())
        return true;
    return false;
  }

  /**
   * @return {@link #instantiatesCanonical} (The URL pointing to a FHIR-defined
   *         protocol, guideline, orderset or other definition that is adhered to
   *         in whole or in part by this FamilyMemberHistory.)
   */
  public CanonicalType addInstantiatesCanonicalElement() {// 2
    CanonicalType t = new CanonicalType();
    if (this.instantiatesCanonical == null)
      this.instantiatesCanonical = new ArrayList();
    this.instantiatesCanonical.add(t);
    return t;
  }

  /**
   * @param value {@link #instantiatesCanonical} (The URL pointing to a
   *              FHIR-defined protocol, guideline, orderset or other definition
   *              that is adhered to in whole or in part by this
   *              FamilyMemberHistory.)
   */
  public FamilyMemberHistory addInstantiatesCanonical(String value) { // 1
    CanonicalType t = new CanonicalType();
    t.setValue(value);
    if (this.instantiatesCanonical == null)
      this.instantiatesCanonical = new ArrayList();
    this.instantiatesCanonical.add(t);
    return this;
  }

  /**
   * @param value {@link #instantiatesCanonical} (The URL pointing to a
   *              FHIR-defined protocol, guideline, orderset or other definition
   *              that is adhered to in whole or in part by this
   *              FamilyMemberHistory.)
   */
  public boolean hasInstantiatesCanonical(String value) {
    if (this.instantiatesCanonical == null)
      return false;
    for (CanonicalType v : this.instantiatesCanonical)
      if (v.getValue().equals(value)) // canonical(PlanDefinition|Questionnaire|ActivityDefinition|Measure|OperationDefinition)
        return true;
    return false;
  }

  /**
   * @return {@link #instantiatesUri} (The URL pointing to an externally
   *         maintained protocol, guideline, orderset or other definition that is
   *         adhered to in whole or in part by this FamilyMemberHistory.)
   */
  public List getInstantiatesUri() {
    if (this.instantiatesUri == null)
      this.instantiatesUri = new ArrayList();
    return this.instantiatesUri;
  }

  /**
   * @return Returns a reference to this for easy method chaining
   */
  public FamilyMemberHistory setInstantiatesUri(List theInstantiatesUri) {
    this.instantiatesUri = theInstantiatesUri;
    return this;
  }

  public boolean hasInstantiatesUri() {
    if (this.instantiatesUri == null)
      return false;
    for (UriType item : this.instantiatesUri)
      if (!item.isEmpty())
        return true;
    return false;
  }

  /**
   * @return {@link #instantiatesUri} (The URL pointing to an externally
   *         maintained protocol, guideline, orderset or other definition that is
   *         adhered to in whole or in part by this FamilyMemberHistory.)
   */
  public UriType addInstantiatesUriElement() {// 2
    UriType t = new UriType();
    if (this.instantiatesUri == null)
      this.instantiatesUri = new ArrayList();
    this.instantiatesUri.add(t);
    return t;
  }

  /**
   * @param value {@link #instantiatesUri} (The URL pointing to an externally
   *              maintained protocol, guideline, orderset or other definition
   *              that is adhered to in whole or in part by this
   *              FamilyMemberHistory.)
   */
  public FamilyMemberHistory addInstantiatesUri(String value) { // 1
    UriType t = new UriType();
    t.setValue(value);
    if (this.instantiatesUri == null)
      this.instantiatesUri = new ArrayList();
    this.instantiatesUri.add(t);
    return this;
  }

  /**
   * @param value {@link #instantiatesUri} (The URL pointing to an externally
   *              maintained protocol, guideline, orderset or other definition
   *              that is adhered to in whole or in part by this
   *              FamilyMemberHistory.)
   */
  public boolean hasInstantiatesUri(String value) {
    if (this.instantiatesUri == null)
      return false;
    for (UriType v : this.instantiatesUri)
      if (v.getValue().equals(value)) // uri
        return true;
    return false;
  }

  /**
   * @return {@link #status} (A code specifying the status of the record of the
   *         family history of a specific family member.). 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 the status of the record of
   *              the family history of a specific family member.). 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 the status of the record of the family history of a
   *         specific family member.
   */
  public FamilyHistoryStatus getStatus() {
    return this.status == null ? null : this.status.getValue();
  }

  /**
   * @param value A code specifying the status of the record of the family history
   *              of a specific family member.
   */
  public FamilyMemberHistory setStatus(FamilyHistoryStatus value) {
    if (this.status == null)
      this.status = new Enumeration(new FamilyHistoryStatusEnumFactory());
    this.status.setValue(value);
    return this;
  }

  /**
   * @return {@link #dataAbsentReason} (Describes why the family member's history
   *         is not available.)
   */
  public CodeableConcept getDataAbsentReason() {
    if (this.dataAbsentReason == null)
      if (Configuration.errorOnAutoCreate())
        throw new Error("Attempt to auto-create FamilyMemberHistory.dataAbsentReason");
      else if (Configuration.doAutoCreate())
        this.dataAbsentReason = new CodeableConcept(); // cc
    return this.dataAbsentReason;
  }

  public boolean hasDataAbsentReason() {
    return this.dataAbsentReason != null && !this.dataAbsentReason.isEmpty();
  }

  /**
   * @param value {@link #dataAbsentReason} (Describes why the family member's
   *              history is not available.)
   */
  public FamilyMemberHistory setDataAbsentReason(CodeableConcept value) {
    this.dataAbsentReason = value;
    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 recorded or last updated.). 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 recorded or last updated.). 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
   *         recorded or last updated.
   */
  public Date getDate() {
    return this.date == null ? null : this.date.getValue();
  }

  /**
   * @param value The date (and possibly time) when the family member history was
   *              recorded or last updated.
   */
  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 #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 #sex} (The birth sex of the family member.)
   */
  public CodeableConcept getSex() {
    if (this.sex == null)
      if (Configuration.errorOnAutoCreate())
        throw new Error("Attempt to auto-create FamilyMemberHistory.sex");
      else if (Configuration.doAutoCreate())
        this.sex = new CodeableConcept(); // cc
    return this.sex;
  }

  public boolean hasSex() {
    return this.sex != null && !this.sex.isEmpty();
  }

  /**
   * @param value {@link #sex} (The birth sex of the family member.)
   */
  public FamilyMemberHistory setSex(CodeableConcept value) {
    this.sex = 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 == null)
      this.born = new Period();
    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 != null && 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 == null)
      this.born = new DateType();
    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 != null && 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 == null)
      this.born = new StringType();
    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 != null && 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) {
    if (value != null && !(value instanceof Period || value instanceof DateType || value instanceof StringType))
      throw new Error("Not the right type for FamilyMemberHistory.born[x]: " + value.fhirType());
    this.born = value;
    return this;
  }

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

  /**
   * @return {@link #age} (The age of the relative at the time the family member
   *         history is recorded.)
   */
  public Age getAgeAge() throws FHIRException {
    if (this.age == null)
      this.age = new Age();
    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 != null && this.age instanceof Age;
  }

  /**
   * @return {@link #age} (The age of the relative at the time the family member
   *         history is recorded.)
   */
  public Range getAgeRange() throws FHIRException {
    if (this.age == null)
      this.age = new Range();
    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 != null && this.age instanceof Range;
  }

  /**
   * @return {@link #age} (The age of the relative at the time the family member
   *         history is recorded.)
   */
  public StringType getAgeStringType() throws FHIRException {
    if (this.age == null)
      this.age = new StringType();
    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 != null && this.age instanceof StringType;
  }

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

  /**
   * @param value {@link #age} (The age of the relative at the time the family
   *              member history is recorded.)
   */
  public FamilyMemberHistory setAge(Type value) {
    if (value != null && !(value instanceof Age || value instanceof Range || value instanceof StringType))
      throw new Error("Not the right type for FamilyMemberHistory.age[x]: " + value.fhirType());
    this.age = value;
    return this;
  }

  /**
   * @return {@link #estimatedAge} (If true, indicates that the age value
   *         specified is an estimated value.). This is the underlying object with
   *         id, value and extensions. The accessor "getEstimatedAge" gives direct
   *         access to the value
   */
  public BooleanType getEstimatedAgeElement() {
    if (this.estimatedAge == null)
      if (Configuration.errorOnAutoCreate())
        throw new Error("Attempt to auto-create FamilyMemberHistory.estimatedAge");
      else if (Configuration.doAutoCreate())
        this.estimatedAge = new BooleanType(); // bb
    return this.estimatedAge;
  }

  public boolean hasEstimatedAgeElement() {
    return this.estimatedAge != null && !this.estimatedAge.isEmpty();
  }

  public boolean hasEstimatedAge() {
    return this.estimatedAge != null && !this.estimatedAge.isEmpty();
  }

  /**
   * @param value {@link #estimatedAge} (If true, indicates that the age value
   *              specified is an estimated value.). This is the underlying object
   *              with id, value and extensions. The accessor "getEstimatedAge"
   *              gives direct access to the value
   */
  public FamilyMemberHistory setEstimatedAgeElement(BooleanType value) {
    this.estimatedAge = value;
    return this;
  }

  /**
   * @return If true, indicates that the age value specified is an estimated
   *         value.
   */
  public boolean getEstimatedAge() {
    return this.estimatedAge == null || this.estimatedAge.isEmpty() ? false : this.estimatedAge.getValue();
  }

  /**
   * @param value If true, indicates that the age value specified is an estimated
   *              value.
   */
  public FamilyMemberHistory setEstimatedAge(boolean value) {
    if (this.estimatedAge == null)
      this.estimatedAge = new BooleanType();
    this.estimatedAge.setValue(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 == null)
      this.deceased = new BooleanType();
    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 != null && 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 == null)
      this.deceased = new Age();
    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 != null && 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 == null)
      this.deceased = new Range();
    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 != null && 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 == null)
      this.deceased = new DateType();
    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 != null && 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 == null)
      this.deceased = new StringType();
    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 != null && 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) {
    if (value != null && !(value instanceof BooleanType || value instanceof Age || value instanceof Range
        || value instanceof DateType || value instanceof StringType))
      throw new Error("Not the right type for FamilyMemberHistory.deceased[x]: " + value.fhirType());
    this.deceased = value;
    return this;
  }

  /**
   * @return {@link #reasonCode} (Describes why the family member history occurred
   *         in coded or textual form.)
   */
  public List getReasonCode() {
    if (this.reasonCode == null)
      this.reasonCode = new ArrayList();
    return this.reasonCode;
  }

  /**
   * @return Returns a reference to this for easy method chaining
   */
  public FamilyMemberHistory setReasonCode(List theReasonCode) {
    this.reasonCode = theReasonCode;
    return this;
  }

  public boolean hasReasonCode() {
    if (this.reasonCode == null)
      return false;
    for (CodeableConcept item : this.reasonCode)
      if (!item.isEmpty())
        return true;
    return false;
  }

  public CodeableConcept addReasonCode() { // 3
    CodeableConcept t = new CodeableConcept();
    if (this.reasonCode == null)
      this.reasonCode = new ArrayList();
    this.reasonCode.add(t);
    return t;
  }

  public FamilyMemberHistory addReasonCode(CodeableConcept t) { // 3
    if (t == null)
      return this;
    if (this.reasonCode == null)
      this.reasonCode = new ArrayList();
    this.reasonCode.add(t);
    return this;
  }

  /**
   * @return The first repetition of repeating field {@link #reasonCode}, creating
   *         it if it does not already exist
   */
  public CodeableConcept getReasonCodeFirstRep() {
    if (getReasonCode().isEmpty()) {
      addReasonCode();
    }
    return getReasonCode().get(0);
  }

  /**
   * @return {@link #reasonReference} (Indicates a Condition, Observation,
   *         AllergyIntolerance, or QuestionnaireResponse that justifies this
   *         family member history event.)
   */
  public List getReasonReference() {
    if (this.reasonReference == null)
      this.reasonReference = new ArrayList();
    return this.reasonReference;
  }

  /**
   * @return Returns a reference to this for easy method chaining
   */
  public FamilyMemberHistory setReasonReference(List theReasonReference) {
    this.reasonReference = theReasonReference;
    return this;
  }

  public boolean hasReasonReference() {
    if (this.reasonReference == null)
      return false;
    for (Reference item : this.reasonReference)
      if (!item.isEmpty())
        return true;
    return false;
  }

  public Reference addReasonReference() { // 3
    Reference t = new Reference();
    if (this.reasonReference == null)
      this.reasonReference = new ArrayList();
    this.reasonReference.add(t);
    return t;
  }

  public FamilyMemberHistory addReasonReference(Reference t) { // 3
    if (t == null)
      return this;
    if (this.reasonReference == null)
      this.reasonReference = new ArrayList();
    this.reasonReference.add(t);
    return this;
  }

  /**
   * @return The first repetition of repeating field {@link #reasonReference},
   *         creating it if it does not already exist
   */
  public Reference getReasonReferenceFirstRep() {
    if (getReasonReference().isEmpty()) {
      addReasonReference();
    }
    return getReasonReference().get(0);
  }

  /**
   * @deprecated Use Reference#setResource(IBaseResource) instead
   */
  @Deprecated
  public List getReasonReferenceTarget() {
    if (this.reasonReferenceTarget == null)
      this.reasonReferenceTarget = new ArrayList();
    return this.reasonReferenceTarget;
  }

  /**
   * @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 List getNote() {
    if (this.note == null)
      this.note = new ArrayList();
    return this.note;
  }

  /**
   * @return Returns a reference to this for easy method chaining
   */
  public FamilyMemberHistory setNote(List theNote) {
    this.note = theNote;
    return this;
  }

  public boolean hasNote() {
    if (this.note == null)
      return false;
    for (Annotation item : this.note)
      if (!item.isEmpty())
        return true;
    return false;
  }

  public Annotation addNote() { // 3
    Annotation t = new Annotation();
    if (this.note == null)
      this.note = new ArrayList();
    this.note.add(t);
    return t;
  }

  public FamilyMemberHistory addNote(Annotation t) { // 3
    if (t == null)
      return this;
    if (this.note == null)
      this.note = new ArrayList();
    this.note.add(t);
    return this;
  }

  /**
   * @return The first repetition of repeating field {@link #note}, creating it if
   *         it does not already exist
   */
  public Annotation getNoteFirstRep() {
    if (getNote().isEmpty()) {
      addNote();
    }
    return getNote().get(0);
  }

  /**
   * @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;
  }

  /**
   * @return Returns a reference to this for easy method chaining
   */
  public FamilyMemberHistory setCondition(List theCondition) {
    this.condition = theCondition;
    return this;
  }

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

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

  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;
  }

  /**
   * @return The first repetition of repeating field {@link #condition}, creating
   *         it if it does not already exist
   */
  public FamilyMemberHistoryConditionComponent getConditionFirstRep() {
    if (getCondition().isEmpty()) {
      addCondition();
    }
    return getCondition().get(0);
  }

  protected void listChildren(List children) {
    super.listChildren(children);
    children.add(new Property("identifier", "Identifier",
        "Business identifiers assigned to this family member history by the performer or other systems which remain constant as the resource is updated and propagates from server to server.",
        0, java.lang.Integer.MAX_VALUE, identifier));
    children.add(new Property("instantiatesCanonical",
        "canonical(PlanDefinition|Questionnaire|ActivityDefinition|Measure|OperationDefinition)",
        "The URL pointing to a FHIR-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by this FamilyMemberHistory.",
        0, java.lang.Integer.MAX_VALUE, instantiatesCanonical));
    children.add(new Property("instantiatesUri", "uri",
        "The URL pointing to an externally maintained protocol, guideline, orderset or other definition that is adhered to in whole or in part by this FamilyMemberHistory.",
        0, java.lang.Integer.MAX_VALUE, instantiatesUri));
    children.add(new Property("status", "code",
        "A code specifying the status of the record of the family history of a specific family member.", 0, 1, status));
    children.add(new Property("dataAbsentReason", "CodeableConcept",
        "Describes why the family member's history is not available.", 0, 1, dataAbsentReason));
    children.add(new Property("patient", "Reference(Patient)", "The person who this history concerns.", 0, 1, patient));
    children.add(new Property("date", "dateTime",
        "The date (and possibly time) when the family member history was recorded or last updated.", 0, 1, date));
    children.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, 1,
        name));
    children.add(new Property("relationship", "CodeableConcept",
        "The type of relationship this person has to the patient (father, mother, brother etc.).", 0, 1, relationship));
    children.add(new Property("sex", "CodeableConcept", "The birth sex of the family member.", 0, 1, sex));
    children.add(new Property("born[x]", "Period|date|string",
        "The actual or approximate date of birth of the relative.", 0, 1, born));
    children.add(new Property("age[x]", "Age|Range|string",
        "The age of the relative at the time the family member history is recorded.", 0, 1, age));
    children.add(new Property("estimatedAge", "boolean",
        "If true, indicates that the age value specified is an estimated value.", 0, 1, estimatedAge));
    children.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, 1, deceased));
    children.add(new Property("reasonCode", "CodeableConcept",
        "Describes why the family member history occurred in coded or textual form.", 0, java.lang.Integer.MAX_VALUE,
        reasonCode));
    children.add(new Property("reasonReference",
        "Reference(Condition|Observation|AllergyIntolerance|QuestionnaireResponse|DiagnosticReport|DocumentReference)",
        "Indicates a Condition, Observation, AllergyIntolerance, or QuestionnaireResponse that justifies this family member history event.",
        0, java.lang.Integer.MAX_VALUE, reasonReference));
    children.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));
    children.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 Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
    switch (_hash) {
    case -1618432855:
      /* identifier */ return new Property("identifier", "Identifier",
          "Business identifiers assigned to this family member history by the performer or other systems which remain constant as the resource is updated and propagates from server to server.",
          0, java.lang.Integer.MAX_VALUE, identifier);
    case 8911915:
      /* instantiatesCanonical */ return new Property("instantiatesCanonical",
          "canonical(PlanDefinition|Questionnaire|ActivityDefinition|Measure|OperationDefinition)",
          "The URL pointing to a FHIR-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by this FamilyMemberHistory.",
          0, java.lang.Integer.MAX_VALUE, instantiatesCanonical);
    case -1926393373:
      /* instantiatesUri */ return new Property("instantiatesUri", "uri",
          "The URL pointing to an externally maintained protocol, guideline, orderset or other definition that is adhered to in whole or in part by this FamilyMemberHistory.",
          0, java.lang.Integer.MAX_VALUE, instantiatesUri);
    case -892481550:
      /* status */ return new Property("status", "code",
          "A code specifying the status of the record of the family history of a specific family member.", 0, 1,
          status);
    case 1034315687:
      /* dataAbsentReason */ return new Property("dataAbsentReason", "CodeableConcept",
          "Describes why the family member's history is not available.", 0, 1, dataAbsentReason);
    case -791418107:
      /* patient */ return new Property("patient", "Reference(Patient)", "The person who this history concerns.", 0, 1,
          patient);
    case 3076014:
      /* date */ return new Property("date", "dateTime",
          "The date (and possibly time) when the family member history was recorded or last updated.", 0, 1, date);
    case 3373707:
      /* name */ return new Property("name", "string",
          "This will either be a name or a description; e.g. \"Aunt Susan\", \"my cousin with the red hair\".", 0, 1,
          name);
    case -261851592:
      /* relationship */ return new Property("relationship", "CodeableConcept",
          "The type of relationship this person has to the patient (father, mother, brother etc.).", 0, 1,
          relationship);
    case 113766:
      /* sex */ return new Property("sex", "CodeableConcept", "The birth sex of the family member.", 0, 1, sex);
    case 67532951:
      /* born[x] */ return new Property("born[x]", "Period|date|string",
          "The actual or approximate date of birth of the relative.", 0, 1, born);
    case 3029833:
      /* born */ return new Property("born[x]", "Period|date|string",
          "The actual or approximate date of birth of the relative.", 0, 1, born);
    case 1497711210:
      /* bornPeriod */ return new Property("born[x]", "Period|date|string",
          "The actual or approximate date of birth of the relative.", 0, 1, born);
    case 2092814999:
      /* bornDate */ return new Property("born[x]", "Period|date|string",
          "The actual or approximate date of birth of the relative.", 0, 1, born);
    case 1597451450:
      /* bornString */ return new Property("born[x]", "Period|date|string",
          "The actual or approximate date of birth of the relative.", 0, 1, born);
    case -1419716831:
      /* age[x] */ return new Property("age[x]", "Age|Range|string",
          "The age of the relative at the time the family member history is recorded.", 0, 1, age);
    case 96511:
      /* age */ return new Property("age[x]", "Age|Range|string",
          "The age of the relative at the time the family member history is recorded.", 0, 1, age);
    case -1419742336:
      /* ageAge */ return new Property("age[x]", "Age|Range|string",
          "The age of the relative at the time the family member history is recorded.", 0, 1, age);
    case 1442748286:
      /* ageRange */ return new Property("age[x]", "Age|Range|string",
          "The age of the relative at the time the family member history is recorded.", 0, 1, age);
    case 1821821424:
      /* ageString */ return new Property("age[x]", "Age|Range|string",
          "The age of the relative at the time the family member history is recorded.", 0, 1, age);
    case 2130167587:
      /* estimatedAge */ return new Property("estimatedAge", "boolean",
          "If true, indicates that the age value specified is an estimated value.", 0, 1, estimatedAge);
    case -1311442804:
      /* deceased[x] */ return 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, 1, deceased);
    case 561497972:
      /* deceased */ return 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, 1, deceased);
    case 497463828:
      /* deceasedBoolean */ return 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, 1, deceased);
    case -1311468309:
      /* deceasedAge */ return 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, 1, deceased);
    case -1880094167:
      /* deceasedRange */ return 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, 1, deceased);
    case -2000727742:
      /* deceasedDate */ return 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, 1, deceased);
    case 1892920485:
      /* deceasedString */ return 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, 1, deceased);
    case 722137681:
      /* reasonCode */ return new Property("reasonCode", "CodeableConcept",
          "Describes why the family member history occurred in coded or textual form.", 0, java.lang.Integer.MAX_VALUE,
          reasonCode);
    case -1146218137:
      /* reasonReference */ return new Property("reasonReference",
          "Reference(Condition|Observation|AllergyIntolerance|QuestionnaireResponse|DiagnosticReport|DocumentReference)",
          "Indicates a Condition, Observation, AllergyIntolerance, or QuestionnaireResponse that justifies this family member history event.",
          0, java.lang.Integer.MAX_VALUE, reasonReference);
    case 3387378:
      /* note */ return 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);
    case -861311717:
      /* condition */ return 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);
    default:
      return super.getNamedProperty(_hash, _name, _checkValid);
    }

  }

  @Override
  public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
    switch (hash) {
    case -1618432855:
      /* identifier */ return this.identifier == null ? new Base[0]
          : this.identifier.toArray(new Base[this.identifier.size()]); // Identifier
    case 8911915:
      /* instantiatesCanonical */ return this.instantiatesCanonical == null ? new Base[0]
          : this.instantiatesCanonical.toArray(new Base[this.instantiatesCanonical.size()]); // CanonicalType
    case -1926393373:
      /* instantiatesUri */ return this.instantiatesUri == null ? new Base[0]
          : this.instantiatesUri.toArray(new Base[this.instantiatesUri.size()]); // UriType
    case -892481550:
      /* status */ return this.status == null ? new Base[0] : new Base[] { this.status }; // Enumeration
    case 1034315687:
      /* dataAbsentReason */ return this.dataAbsentReason == null ? new Base[0] : new Base[] { this.dataAbsentReason }; // CodeableConcept
    case -791418107:
      /* patient */ return this.patient == null ? new Base[0] : new Base[] { this.patient }; // Reference
    case 3076014:
      /* date */ return this.date == null ? new Base[0] : new Base[] { this.date }; // DateTimeType
    case 3373707:
      /* name */ return this.name == null ? new Base[0] : new Base[] { this.name }; // StringType
    case -261851592:
      /* relationship */ return this.relationship == null ? new Base[0] : new Base[] { this.relationship }; // CodeableConcept
    case 113766:
      /* sex */ return this.sex == null ? new Base[0] : new Base[] { this.sex }; // CodeableConcept
    case 3029833:
      /* born */ return this.born == null ? new Base[0] : new Base[] { this.born }; // Type
    case 96511:
      /* age */ return this.age == null ? new Base[0] : new Base[] { this.age }; // Type
    case 2130167587:
      /* estimatedAge */ return this.estimatedAge == null ? new Base[0] : new Base[] { this.estimatedAge }; // BooleanType
    case 561497972:
      /* deceased */ return this.deceased == null ? new Base[0] : new Base[] { this.deceased }; // Type
    case 722137681:
      /* reasonCode */ return this.reasonCode == null ? new Base[0]
          : this.reasonCode.toArray(new Base[this.reasonCode.size()]); // CodeableConcept
    case -1146218137:
      /* reasonReference */ return this.reasonReference == null ? new Base[0]
          : this.reasonReference.toArray(new Base[this.reasonReference.size()]); // Reference
    case 3387378:
      /* note */ return this.note == null ? new Base[0] : this.note.toArray(new Base[this.note.size()]); // Annotation
    case -861311717:
      /* condition */ return this.condition == null ? new Base[0]
          : this.condition.toArray(new Base[this.condition.size()]); // FamilyMemberHistoryConditionComponent
    default:
      return super.getProperty(hash, name, checkValid);
    }

  }

  @Override
  public Base setProperty(int hash, String name, Base value) throws FHIRException {
    switch (hash) {
    case -1618432855: // identifier
      this.getIdentifier().add(castToIdentifier(value)); // Identifier
      return value;
    case 8911915: // instantiatesCanonical
      this.getInstantiatesCanonical().add(castToCanonical(value)); // CanonicalType
      return value;
    case -1926393373: // instantiatesUri
      this.getInstantiatesUri().add(castToUri(value)); // UriType
      return value;
    case -892481550: // status
      value = new FamilyHistoryStatusEnumFactory().fromType(castToCode(value));
      this.status = (Enumeration) value; // Enumeration
      return value;
    case 1034315687: // dataAbsentReason
      this.dataAbsentReason = castToCodeableConcept(value); // CodeableConcept
      return value;
    case -791418107: // patient
      this.patient = castToReference(value); // Reference
      return value;
    case 3076014: // date
      this.date = castToDateTime(value); // DateTimeType
      return value;
    case 3373707: // name
      this.name = castToString(value); // StringType
      return value;
    case -261851592: // relationship
      this.relationship = castToCodeableConcept(value); // CodeableConcept
      return value;
    case 113766: // sex
      this.sex = castToCodeableConcept(value); // CodeableConcept
      return value;
    case 3029833: // born
      this.born = castToType(value); // Type
      return value;
    case 96511: // age
      this.age = castToType(value); // Type
      return value;
    case 2130167587: // estimatedAge
      this.estimatedAge = castToBoolean(value); // BooleanType
      return value;
    case 561497972: // deceased
      this.deceased = castToType(value); // Type
      return value;
    case 722137681: // reasonCode
      this.getReasonCode().add(castToCodeableConcept(value)); // CodeableConcept
      return value;
    case -1146218137: // reasonReference
      this.getReasonReference().add(castToReference(value)); // Reference
      return value;
    case 3387378: // note
      this.getNote().add(castToAnnotation(value)); // Annotation
      return value;
    case -861311717: // condition
      this.getCondition().add((FamilyMemberHistoryConditionComponent) value); // FamilyMemberHistoryConditionComponent
      return value;
    default:
      return super.setProperty(hash, name, value);
    }

  }

  @Override
  public Base setProperty(String name, Base value) throws FHIRException {
    if (name.equals("identifier")) {
      this.getIdentifier().add(castToIdentifier(value));
    } else if (name.equals("instantiatesCanonical")) {
      this.getInstantiatesCanonical().add(castToCanonical(value));
    } else if (name.equals("instantiatesUri")) {
      this.getInstantiatesUri().add(castToUri(value));
    } else if (name.equals("status")) {
      value = new FamilyHistoryStatusEnumFactory().fromType(castToCode(value));
      this.status = (Enumeration) value; // Enumeration
    } else if (name.equals("dataAbsentReason")) {
      this.dataAbsentReason = castToCodeableConcept(value); // CodeableConcept
    } else if (name.equals("patient")) {
      this.patient = castToReference(value); // Reference
    } else if (name.equals("date")) {
      this.date = castToDateTime(value); // DateTimeType
    } else if (name.equals("name")) {
      this.name = castToString(value); // StringType
    } else if (name.equals("relationship")) {
      this.relationship = castToCodeableConcept(value); // CodeableConcept
    } else if (name.equals("sex")) {
      this.sex = castToCodeableConcept(value); // CodeableConcept
    } else if (name.equals("born[x]")) {
      this.born = castToType(value); // Type
    } else if (name.equals("age[x]")) {
      this.age = castToType(value); // Type
    } else if (name.equals("estimatedAge")) {
      this.estimatedAge = castToBoolean(value); // BooleanType
    } else if (name.equals("deceased[x]")) {
      this.deceased = castToType(value); // Type
    } else if (name.equals("reasonCode")) {
      this.getReasonCode().add(castToCodeableConcept(value));
    } else if (name.equals("reasonReference")) {
      this.getReasonReference().add(castToReference(value));
    } else if (name.equals("note")) {
      this.getNote().add(castToAnnotation(value));
    } else if (name.equals("condition")) {
      this.getCondition().add((FamilyMemberHistoryConditionComponent) value);
    } else
      return super.setProperty(name, value);
    return value;
  }

  @Override
  public void removeChild(String name, Base value) throws FHIRException {
    if (name.equals("identifier")) {
      this.getIdentifier().remove(castToIdentifier(value));
    } else if (name.equals("instantiatesCanonical")) {
      this.getInstantiatesCanonical().remove(castToCanonical(value));
    } else if (name.equals("instantiatesUri")) {
      this.getInstantiatesUri().remove(castToUri(value));
    } else if (name.equals("status")) {
      this.status = null;
    } else if (name.equals("dataAbsentReason")) {
      this.dataAbsentReason = null;
    } else if (name.equals("patient")) {
      this.patient = null;
    } else if (name.equals("date")) {
      this.date = null;
    } else if (name.equals("name")) {
      this.name = null;
    } else if (name.equals("relationship")) {
      this.relationship = null;
    } else if (name.equals("sex")) {
      this.sex = null;
    } else if (name.equals("born[x]")) {
      this.born = null;
    } else if (name.equals("age[x]")) {
      this.age = null;
    } else if (name.equals("estimatedAge")) {
      this.estimatedAge = null;
    } else if (name.equals("deceased[x]")) {
      this.deceased = null;
    } else if (name.equals("reasonCode")) {
      this.getReasonCode().remove(castToCodeableConcept(value));
    } else if (name.equals("reasonReference")) {
      this.getReasonReference().remove(castToReference(value));
    } else if (name.equals("note")) {
      this.getNote().remove(castToAnnotation(value));
    } else if (name.equals("condition")) {
      this.getCondition().remove((FamilyMemberHistoryConditionComponent) value);
    } else
      super.removeChild(name, value);
    
  }

  @Override
  public Base makeProperty(int hash, String name) throws FHIRException {
    switch (hash) {
    case -1618432855:
      return addIdentifier();
    case 8911915:
      return addInstantiatesCanonicalElement();
    case -1926393373:
      return addInstantiatesUriElement();
    case -892481550:
      return getStatusElement();
    case 1034315687:
      return getDataAbsentReason();
    case -791418107:
      return getPatient();
    case 3076014:
      return getDateElement();
    case 3373707:
      return getNameElement();
    case -261851592:
      return getRelationship();
    case 113766:
      return getSex();
    case 67532951:
      return getBorn();
    case 3029833:
      return getBorn();
    case -1419716831:
      return getAge();
    case 96511:
      return getAge();
    case 2130167587:
      return getEstimatedAgeElement();
    case -1311442804:
      return getDeceased();
    case 561497972:
      return getDeceased();
    case 722137681:
      return addReasonCode();
    case -1146218137:
      return addReasonReference();
    case 3387378:
      return addNote();
    case -861311717:
      return addCondition();
    default:
      return super.makeProperty(hash, name);
    }

  }

  @Override
  public String[] getTypesForProperty(int hash, String name) throws FHIRException {
    switch (hash) {
    case -1618432855:
      /* identifier */ return new String[] { "Identifier" };
    case 8911915:
      /* instantiatesCanonical */ return new String[] { "canonical" };
    case -1926393373:
      /* instantiatesUri */ return new String[] { "uri" };
    case -892481550:
      /* status */ return new String[] { "code" };
    case 1034315687:
      /* dataAbsentReason */ return new String[] { "CodeableConcept" };
    case -791418107:
      /* patient */ return new String[] { "Reference" };
    case 3076014:
      /* date */ return new String[] { "dateTime" };
    case 3373707:
      /* name */ return new String[] { "string" };
    case -261851592:
      /* relationship */ return new String[] { "CodeableConcept" };
    case 113766:
      /* sex */ return new String[] { "CodeableConcept" };
    case 3029833:
      /* born */ return new String[] { "Period", "date", "string" };
    case 96511:
      /* age */ return new String[] { "Age", "Range", "string" };
    case 2130167587:
      /* estimatedAge */ return new String[] { "boolean" };
    case 561497972:
      /* deceased */ return new String[] { "boolean", "Age", "Range", "date", "string" };
    case 722137681:
      /* reasonCode */ return new String[] { "CodeableConcept" };
    case -1146218137:
      /* reasonReference */ return new String[] { "Reference" };
    case 3387378:
      /* note */ return new String[] { "Annotation" };
    case -861311717:
      /* condition */ return new String[] {};
    default:
      return super.getTypesForProperty(hash, name);
    }

  }

  @Override
  public Base addChild(String name) throws FHIRException {
    if (name.equals("identifier")) {
      return addIdentifier();
    } else if (name.equals("instantiatesCanonical")) {
      throw new FHIRException("Cannot call addChild on a singleton property FamilyMemberHistory.instantiatesCanonical");
    } else if (name.equals("instantiatesUri")) {
      throw new FHIRException("Cannot call addChild on a singleton property FamilyMemberHistory.instantiatesUri");
    } else if (name.equals("status")) {
      throw new FHIRException("Cannot call addChild on a singleton property FamilyMemberHistory.status");
    } else if (name.equals("dataAbsentReason")) {
      this.dataAbsentReason = new CodeableConcept();
      return this.dataAbsentReason;
    } 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("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("sex")) {
      this.sex = new CodeableConcept();
      return this.sex;
    } 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("estimatedAge")) {
      throw new FHIRException("Cannot call addChild on a singleton property FamilyMemberHistory.estimatedAge");
    } 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("reasonCode")) {
      return addReasonCode();
    } else if (name.equals("reasonReference")) {
      return addReasonReference();
    } else if (name.equals("note")) {
      return addNote();
    } 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);
    return dst;
  }

  public void copyValues(FamilyMemberHistory dst) {
    super.copyValues(dst);
    if (identifier != null) {
      dst.identifier = new ArrayList();
      for (Identifier i : identifier)
        dst.identifier.add(i.copy());
    }
    ;
    if (instantiatesCanonical != null) {
      dst.instantiatesCanonical = new ArrayList();
      for (CanonicalType i : instantiatesCanonical)
        dst.instantiatesCanonical.add(i.copy());
    }
    ;
    if (instantiatesUri != null) {
      dst.instantiatesUri = new ArrayList();
      for (UriType i : instantiatesUri)
        dst.instantiatesUri.add(i.copy());
    }
    ;
    dst.status = status == null ? null : status.copy();
    dst.dataAbsentReason = dataAbsentReason == null ? null : dataAbsentReason.copy();
    dst.patient = patient == null ? null : patient.copy();
    dst.date = date == null ? null : date.copy();
    dst.name = name == null ? null : name.copy();
    dst.relationship = relationship == null ? null : relationship.copy();
    dst.sex = sex == null ? null : sex.copy();
    dst.born = born == null ? null : born.copy();
    dst.age = age == null ? null : age.copy();
    dst.estimatedAge = estimatedAge == null ? null : estimatedAge.copy();
    dst.deceased = deceased == null ? null : deceased.copy();
    if (reasonCode != null) {
      dst.reasonCode = new ArrayList();
      for (CodeableConcept i : reasonCode)
        dst.reasonCode.add(i.copy());
    }
    ;
    if (reasonReference != null) {
      dst.reasonReference = new ArrayList();
      for (Reference i : reasonReference)
        dst.reasonReference.add(i.copy());
    }
    ;
    if (note != null) {
      dst.note = new ArrayList();
      for (Annotation i : note)
        dst.note.add(i.copy());
    }
    ;
    if (condition != null) {
      dst.condition = new ArrayList();
      for (FamilyMemberHistoryConditionComponent i : condition)
        dst.condition.add(i.copy());
    }
    ;
  }

  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(instantiatesCanonical, o.instantiatesCanonical, true)
        && compareDeep(instantiatesUri, o.instantiatesUri, true) && compareDeep(status, o.status, true)
        && compareDeep(dataAbsentReason, o.dataAbsentReason, true) && compareDeep(patient, o.patient, true)
        && compareDeep(date, o.date, true) && compareDeep(name, o.name, true)
        && compareDeep(relationship, o.relationship, true) && compareDeep(sex, o.sex, true)
        && compareDeep(born, o.born, true) && compareDeep(age, o.age, true)
        && compareDeep(estimatedAge, o.estimatedAge, true) && compareDeep(deceased, o.deceased, true)
        && compareDeep(reasonCode, o.reasonCode, true) && compareDeep(reasonReference, o.reasonReference, 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(instantiatesUri, o.instantiatesUri, true) && compareValues(status, o.status, true)
        && compareValues(date, o.date, true) && compareValues(name, o.name, true)
        && compareValues(estimatedAge, o.estimatedAge, true);
  }

  public boolean isEmpty() {
    return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(identifier, instantiatesCanonical, instantiatesUri,
        status, dataAbsentReason, patient, date, name, relationship, sex, born, age, estimatedAge, deceased, reasonCode,
        reasonReference, note, condition);
  }

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

  /**
   * Search parameter: date
   * 

* Description: When history was recorded or last updated
* Type: date
* Path: FamilyMemberHistory.date
*

*/ @SearchParamDefinition(name = "date", path = "FamilyMemberHistory.date", description = "When history was recorded or last updated", type = "date") public static final String SP_DATE = "date"; /** * Fluent Client search parameter constant for date *

* Description: When history was recorded or last updated
* Type: date
* Path: FamilyMemberHistory.date
*

*/ public static final ca.uhn.fhir.rest.gclient.DateClientParam DATE = new ca.uhn.fhir.rest.gclient.DateClientParam( SP_DATE); /** * Search parameter: identifier *

* Description: A search by a record identifier
* Type: token
* Path: FamilyMemberHistory.identifier
*

*/ @SearchParamDefinition(name = "identifier", path = "FamilyMemberHistory.identifier", description = "A search by a record identifier", type = "token") public static final String SP_IDENTIFIER = "identifier"; /** * Fluent Client search parameter constant for identifier *

* Description: A search by a record identifier
* Type: token
* Path: FamilyMemberHistory.identifier
*

*/ public static final ca.uhn.fhir.rest.gclient.TokenClientParam IDENTIFIER = new ca.uhn.fhir.rest.gclient.TokenClientParam( SP_IDENTIFIER); /** * Search parameter: code *

* Description: A search by a condition code
* Type: token
* Path: FamilyMemberHistory.condition.code
*

*/ @SearchParamDefinition(name = "code", path = "FamilyMemberHistory.condition.code", description = "A search by a condition code", type = "token") public static final String SP_CODE = "code"; /** * Fluent Client search parameter constant for code *

* Description: A search by a condition code
* Type: token
* Path: FamilyMemberHistory.condition.code
*

*/ public static final ca.uhn.fhir.rest.gclient.TokenClientParam CODE = new ca.uhn.fhir.rest.gclient.TokenClientParam( SP_CODE); /** * Search parameter: patient *

* Description: The identity of a subject to list family member history items * for
* Type: reference
* Path: FamilyMemberHistory.patient
*

*/ @SearchParamDefinition(name = "patient", path = "FamilyMemberHistory.patient", description = "The identity of a subject to list family member history items for", type = "reference", providesMembershipIn = { @ca.uhn.fhir.model.api.annotation.Compartment(name = "Patient") }, target = { Patient.class }) public static final String SP_PATIENT = "patient"; /** * Fluent Client search parameter constant for patient *

* Description: The identity of a subject to list family member history items * for
* Type: reference
* Path: FamilyMemberHistory.patient
*

*/ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam PATIENT = new ca.uhn.fhir.rest.gclient.ReferenceClientParam( SP_PATIENT); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "FamilyMemberHistory:patient". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_PATIENT = new ca.uhn.fhir.model.api.Include( "FamilyMemberHistory:patient").toLocked(); /** * Search parameter: sex *

* Description: A search by a sex code of a family member
* Type: token
* Path: FamilyMemberHistory.sex
*

*/ @SearchParamDefinition(name = "sex", path = "FamilyMemberHistory.sex", description = "A search by a sex code of a family member", type = "token") public static final String SP_SEX = "sex"; /** * Fluent Client search parameter constant for sex *

* Description: A search by a sex code of a family member
* Type: token
* Path: FamilyMemberHistory.sex
*

*/ public static final ca.uhn.fhir.rest.gclient.TokenClientParam SEX = new ca.uhn.fhir.rest.gclient.TokenClientParam( SP_SEX); /** * Search parameter: instantiates-canonical *

* Description: Instantiates FHIR protocol or definition
* Type: reference
* Path: FamilyMemberHistory.instantiatesCanonical
*

*/ @SearchParamDefinition(name = "instantiates-canonical", path = "FamilyMemberHistory.instantiatesCanonical", description = "Instantiates FHIR protocol or definition", type = "reference", target = { ActivityDefinition.class, Measure.class, OperationDefinition.class, PlanDefinition.class, Questionnaire.class }) public static final String SP_INSTANTIATES_CANONICAL = "instantiates-canonical"; /** * Fluent Client search parameter constant for * instantiates-canonical *

* Description: Instantiates FHIR protocol or definition
* Type: reference
* Path: FamilyMemberHistory.instantiatesCanonical
*

*/ public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam INSTANTIATES_CANONICAL = new ca.uhn.fhir.rest.gclient.ReferenceClientParam( SP_INSTANTIATES_CANONICAL); /** * Constant for fluent queries to be used to add include statements. Specifies * the path value of "FamilyMemberHistory:instantiates-canonical". */ public static final ca.uhn.fhir.model.api.Include INCLUDE_INSTANTIATES_CANONICAL = new ca.uhn.fhir.model.api.Include( "FamilyMemberHistory:instantiates-canonical").toLocked(); /** * Search parameter: instantiates-uri *

* Description: Instantiates external protocol or definition
* Type: uri
* Path: FamilyMemberHistory.instantiatesUri
*

*/ @SearchParamDefinition(name = "instantiates-uri", path = "FamilyMemberHistory.instantiatesUri", description = "Instantiates external protocol or definition", type = "uri") public static final String SP_INSTANTIATES_URI = "instantiates-uri"; /** * Fluent Client search parameter constant for instantiates-uri *

* Description: Instantiates external protocol or definition
* Type: uri
* Path: FamilyMemberHistory.instantiatesUri
*

*/ public static final ca.uhn.fhir.rest.gclient.UriClientParam INSTANTIATES_URI = new ca.uhn.fhir.rest.gclient.UriClientParam( SP_INSTANTIATES_URI); /** * Search parameter: relationship *

* Description: A search by a relationship type
* Type: token
* Path: FamilyMemberHistory.relationship
*

*/ @SearchParamDefinition(name = "relationship", path = "FamilyMemberHistory.relationship", description = "A search by a relationship type", type = "token") public static final String SP_RELATIONSHIP = "relationship"; /** * Fluent Client search parameter constant for relationship *

* Description: A search by a relationship type
* Type: token
* Path: FamilyMemberHistory.relationship
*

*/ public static final ca.uhn.fhir.rest.gclient.TokenClientParam RELATIONSHIP = new ca.uhn.fhir.rest.gclient.TokenClientParam( SP_RELATIONSHIP); /** * Search parameter: status *

* Description: partial | completed | entered-in-error | * health-unknown
* Type: token
* Path: FamilyMemberHistory.status
*

*/ @SearchParamDefinition(name = "status", path = "FamilyMemberHistory.status", description = "partial | completed | entered-in-error | health-unknown", type = "token") public static final String SP_STATUS = "status"; /** * Fluent Client search parameter constant for status *

* Description: partial | completed | entered-in-error | * health-unknown
* Type: token
* Path: FamilyMemberHistory.status
*

*/ public static final ca.uhn.fhir.rest.gclient.TokenClientParam STATUS = new ca.uhn.fhir.rest.gclient.TokenClientParam( SP_STATUS); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy