org.hl7.fhir.r4.model.CareTeam Maven / Gradle / Ivy
Show all versions of org.hl7.fhir.r4 Show documentation
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.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;
/**
* The Care Team includes all the people and organizations who plan to
* participate in the coordination and delivery of care for a patient.
*/
@ResourceDef(name = "CareTeam", profile = "http://hl7.org/fhir/StructureDefinition/CareTeam")
public class CareTeam extends DomainResource {
public enum CareTeamStatus {
/**
* The care team has been drafted and proposed, but not yet participating in the
* coordination and delivery of patient care.
*/
PROPOSED,
/**
* The care team is currently participating in the coordination and delivery of
* care.
*/
ACTIVE,
/**
* The care team is temporarily on hold or suspended and not participating in
* the coordination and delivery of care.
*/
SUSPENDED,
/**
* The care team was, but is no longer, participating in the coordination and
* delivery of care.
*/
INACTIVE,
/**
* The care team should have never existed.
*/
ENTEREDINERROR,
/**
* added to help the parsers with the generic types
*/
NULL;
public static CareTeamStatus fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("proposed".equals(codeString))
return PROPOSED;
if ("active".equals(codeString))
return ACTIVE;
if ("suspended".equals(codeString))
return SUSPENDED;
if ("inactive".equals(codeString))
return INACTIVE;
if ("entered-in-error".equals(codeString))
return ENTEREDINERROR;
if (Configuration.isAcceptInvalidEnums())
return null;
else
throw new FHIRException("Unknown CareTeamStatus code '" + codeString + "'");
}
public String toCode() {
switch (this) {
case PROPOSED:
return "proposed";
case ACTIVE:
return "active";
case SUSPENDED:
return "suspended";
case INACTIVE:
return "inactive";
case ENTEREDINERROR:
return "entered-in-error";
case NULL:
return null;
default:
return "?";
}
}
public String getSystem() {
switch (this) {
case PROPOSED:
return "http://hl7.org/fhir/care-team-status";
case ACTIVE:
return "http://hl7.org/fhir/care-team-status";
case SUSPENDED:
return "http://hl7.org/fhir/care-team-status";
case INACTIVE:
return "http://hl7.org/fhir/care-team-status";
case ENTEREDINERROR:
return "http://hl7.org/fhir/care-team-status";
case NULL:
return null;
default:
return "?";
}
}
public String getDefinition() {
switch (this) {
case PROPOSED:
return "The care team has been drafted and proposed, but not yet participating in the coordination and delivery of patient care.";
case ACTIVE:
return "The care team is currently participating in the coordination and delivery of care.";
case SUSPENDED:
return "The care team is temporarily on hold or suspended and not participating in the coordination and delivery of care.";
case INACTIVE:
return "The care team was, but is no longer, participating in the coordination and delivery of care.";
case ENTEREDINERROR:
return "The care team should have never existed.";
case NULL:
return null;
default:
return "?";
}
}
public String getDisplay() {
switch (this) {
case PROPOSED:
return "Proposed";
case ACTIVE:
return "Active";
case SUSPENDED:
return "Suspended";
case INACTIVE:
return "Inactive";
case ENTEREDINERROR:
return "Entered in Error";
case NULL:
return null;
default:
return "?";
}
}
}
public static class CareTeamStatusEnumFactory implements EnumFactory {
public CareTeamStatus fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("proposed".equals(codeString))
return CareTeamStatus.PROPOSED;
if ("active".equals(codeString))
return CareTeamStatus.ACTIVE;
if ("suspended".equals(codeString))
return CareTeamStatus.SUSPENDED;
if ("inactive".equals(codeString))
return CareTeamStatus.INACTIVE;
if ("entered-in-error".equals(codeString))
return CareTeamStatus.ENTEREDINERROR;
throw new IllegalArgumentException("Unknown CareTeamStatus code '" + codeString + "'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this, CareTeamStatus.NULL, code);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return new Enumeration(this, CareTeamStatus.NULL, code);
if ("proposed".equals(codeString))
return new Enumeration(this, CareTeamStatus.PROPOSED, code);
if ("active".equals(codeString))
return new Enumeration(this, CareTeamStatus.ACTIVE, code);
if ("suspended".equals(codeString))
return new Enumeration(this, CareTeamStatus.SUSPENDED, code);
if ("inactive".equals(codeString))
return new Enumeration(this, CareTeamStatus.INACTIVE, code);
if ("entered-in-error".equals(codeString))
return new Enumeration(this, CareTeamStatus.ENTEREDINERROR, code);
throw new FHIRException("Unknown CareTeamStatus code '" + codeString + "'");
}
public String toCode(CareTeamStatus code) {
if (code == CareTeamStatus.PROPOSED)
return "proposed";
if (code == CareTeamStatus.ACTIVE)
return "active";
if (code == CareTeamStatus.SUSPENDED)
return "suspended";
if (code == CareTeamStatus.INACTIVE)
return "inactive";
if (code == CareTeamStatus.ENTEREDINERROR)
return "entered-in-error";
return "?";
}
public String toSystem(CareTeamStatus code) {
return code.getSystem();
}
}
@Block()
public static class CareTeamParticipantComponent extends BackboneElement implements IBaseBackboneElement {
/**
* Indicates specific responsibility of an individual within the care team, such
* as "Primary care physician", "Trained social worker counselor", "Caregiver",
* etc.
*/
@Child(name = "role", type = {
CodeableConcept.class }, order = 1, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = true)
@Description(shortDefinition = "Type of involvement", formalDefinition = "Indicates specific responsibility of an individual within the care team, such as \"Primary care physician\", \"Trained social worker counselor\", \"Caregiver\", etc.")
@ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://hl7.org/fhir/ValueSet/participant-role")
protected List role;
/**
* The specific person or organization who is participating/expected to
* participate in the care team.
*/
@Child(name = "member", type = { Practitioner.class, PractitionerRole.class, RelatedPerson.class, Patient.class,
Organization.class, CareTeam.class }, order = 2, min = 0, max = 1, modifier = false, summary = true)
@Description(shortDefinition = "Who is involved", formalDefinition = "The specific person or organization who is participating/expected to participate in the care team.")
protected Reference member;
/**
* The actual object that is the target of the reference (The specific person or
* organization who is participating/expected to participate in the care team.)
*/
protected Resource memberTarget;
/**
* The organization of the practitioner.
*/
@Child(name = "onBehalfOf", type = {
Organization.class }, order = 3, min = 0, max = 1, modifier = false, summary = true)
@Description(shortDefinition = "Organization of the practitioner", formalDefinition = "The organization of the practitioner.")
protected Reference onBehalfOf;
/**
* The actual object that is the target of the reference (The organization of
* the practitioner.)
*/
protected Organization onBehalfOfTarget;
/**
* Indicates when the specific member or organization did (or is intended to)
* come into effect and end.
*/
@Child(name = "period", type = { Period.class }, order = 4, min = 0, max = 1, modifier = false, summary = false)
@Description(shortDefinition = "Time period of participant", formalDefinition = "Indicates when the specific member or organization did (or is intended to) come into effect and end.")
protected Period period;
private static final long serialVersionUID = -575634410L;
/**
* Constructor
*/
public CareTeamParticipantComponent() {
super();
}
/**
* @return {@link #role} (Indicates specific responsibility of an individual
* within the care team, such as "Primary care physician", "Trained
* social worker counselor", "Caregiver", etc.)
*/
public List getRole() {
if (this.role == null)
this.role = new ArrayList();
return this.role;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CareTeamParticipantComponent setRole(List theRole) {
this.role = theRole;
return this;
}
public boolean hasRole() {
if (this.role == null)
return false;
for (CodeableConcept item : this.role)
if (!item.isEmpty())
return true;
return false;
}
public CodeableConcept addRole() { // 3
CodeableConcept t = new CodeableConcept();
if (this.role == null)
this.role = new ArrayList();
this.role.add(t);
return t;
}
public CareTeamParticipantComponent addRole(CodeableConcept t) { // 3
if (t == null)
return this;
if (this.role == null)
this.role = new ArrayList();
this.role.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #role}, creating it if
* it does not already exist
*/
public CodeableConcept getRoleFirstRep() {
if (getRole().isEmpty()) {
addRole();
}
return getRole().get(0);
}
/**
* @return {@link #member} (The specific person or organization who is
* participating/expected to participate in the care team.)
*/
public Reference getMember() {
if (this.member == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CareTeamParticipantComponent.member");
else if (Configuration.doAutoCreate())
this.member = new Reference(); // cc
return this.member;
}
public boolean hasMember() {
return this.member != null && !this.member.isEmpty();
}
/**
* @param value {@link #member} (The specific person or organization who is
* participating/expected to participate in the care team.)
*/
public CareTeamParticipantComponent setMember(Reference value) {
this.member = value;
return this;
}
/**
* @return {@link #member} 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 specific person
* or organization who is participating/expected to participate in the
* care team.)
*/
public Resource getMemberTarget() {
return this.memberTarget;
}
/**
* @param value {@link #member} 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 specific
* person or organization who is participating/expected to
* participate in the care team.)
*/
public CareTeamParticipantComponent setMemberTarget(Resource value) {
this.memberTarget = value;
return this;
}
/**
* @return {@link #onBehalfOf} (The organization of the practitioner.)
*/
public Reference getOnBehalfOf() {
if (this.onBehalfOf == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CareTeamParticipantComponent.onBehalfOf");
else if (Configuration.doAutoCreate())
this.onBehalfOf = new Reference(); // cc
return this.onBehalfOf;
}
public boolean hasOnBehalfOf() {
return this.onBehalfOf != null && !this.onBehalfOf.isEmpty();
}
/**
* @param value {@link #onBehalfOf} (The organization of the practitioner.)
*/
public CareTeamParticipantComponent setOnBehalfOf(Reference value) {
this.onBehalfOf = value;
return this;
}
/**
* @return {@link #onBehalfOf} 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 organization of
* the practitioner.)
*/
public Organization getOnBehalfOfTarget() {
if (this.onBehalfOfTarget == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CareTeamParticipantComponent.onBehalfOf");
else if (Configuration.doAutoCreate())
this.onBehalfOfTarget = new Organization(); // aa
return this.onBehalfOfTarget;
}
/**
* @param value {@link #onBehalfOf} 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 organization
* of the practitioner.)
*/
public CareTeamParticipantComponent setOnBehalfOfTarget(Organization value) {
this.onBehalfOfTarget = value;
return this;
}
/**
* @return {@link #period} (Indicates when the specific member or organization
* did (or is intended to) come into effect and end.)
*/
public Period getPeriod() {
if (this.period == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CareTeamParticipantComponent.period");
else if (Configuration.doAutoCreate())
this.period = new Period(); // cc
return this.period;
}
public boolean hasPeriod() {
return this.period != null && !this.period.isEmpty();
}
/**
* @param value {@link #period} (Indicates when the specific member or
* organization did (or is intended to) come into effect and end.)
*/
public CareTeamParticipantComponent setPeriod(Period value) {
this.period = value;
return this;
}
protected void listChildren(List children) {
super.listChildren(children);
children.add(new Property("role", "CodeableConcept",
"Indicates specific responsibility of an individual within the care team, such as \"Primary care physician\", \"Trained social worker counselor\", \"Caregiver\", etc.",
0, java.lang.Integer.MAX_VALUE, role));
children.add(
new Property("member", "Reference(Practitioner|PractitionerRole|RelatedPerson|Patient|Organization|CareTeam)",
"The specific person or organization who is participating/expected to participate in the care team.", 0,
1, member));
children.add(new Property("onBehalfOf", "Reference(Organization)", "The organization of the practitioner.", 0, 1,
onBehalfOf));
children.add(new Property("period", "Period",
"Indicates when the specific member or organization did (or is intended to) come into effect and end.", 0, 1,
period));
}
@Override
public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
switch (_hash) {
case 3506294:
/* role */ return new Property("role", "CodeableConcept",
"Indicates specific responsibility of an individual within the care team, such as \"Primary care physician\", \"Trained social worker counselor\", \"Caregiver\", etc.",
0, java.lang.Integer.MAX_VALUE, role);
case -1077769574:
/* member */ return new Property("member",
"Reference(Practitioner|PractitionerRole|RelatedPerson|Patient|Organization|CareTeam)",
"The specific person or organization who is participating/expected to participate in the care team.", 0, 1,
member);
case -14402964:
/* onBehalfOf */ return new Property("onBehalfOf", "Reference(Organization)",
"The organization of the practitioner.", 0, 1, onBehalfOf);
case -991726143:
/* period */ return new Property("period", "Period",
"Indicates when the specific member or organization did (or is intended to) come into effect and end.", 0,
1, period);
default:
return super.getNamedProperty(_hash, _name, _checkValid);
}
}
@Override
public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
switch (hash) {
case 3506294:
/* role */ return this.role == null ? new Base[0] : this.role.toArray(new Base[this.role.size()]); // CodeableConcept
case -1077769574:
/* member */ return this.member == null ? new Base[0] : new Base[] { this.member }; // Reference
case -14402964:
/* onBehalfOf */ return this.onBehalfOf == null ? new Base[0] : new Base[] { this.onBehalfOf }; // Reference
case -991726143:
/* period */ return this.period == null ? new Base[0] : new Base[] { this.period }; // Period
default:
return super.getProperty(hash, name, checkValid);
}
}
@Override
public Base setProperty(int hash, String name, Base value) throws FHIRException {
switch (hash) {
case 3506294: // role
this.getRole().add(castToCodeableConcept(value)); // CodeableConcept
return value;
case -1077769574: // member
this.member = castToReference(value); // Reference
return value;
case -14402964: // onBehalfOf
this.onBehalfOf = castToReference(value); // Reference
return value;
case -991726143: // period
this.period = castToPeriod(value); // Period
return value;
default:
return super.setProperty(hash, name, value);
}
}
@Override
public Base setProperty(String name, Base value) throws FHIRException {
if (name.equals("role")) {
this.getRole().add(castToCodeableConcept(value));
} else if (name.equals("member")) {
this.member = castToReference(value); // Reference
} else if (name.equals("onBehalfOf")) {
this.onBehalfOf = castToReference(value); // Reference
} else if (name.equals("period")) {
this.period = castToPeriod(value); // Period
} else
return super.setProperty(name, value);
return value;
}
@Override
public void removeChild(String name, Base value) throws FHIRException {
if (name.equals("role")) {
this.getRole().remove(castToCodeableConcept(value));
} else if (name.equals("member")) {
this.member = null;
} else if (name.equals("onBehalfOf")) {
this.onBehalfOf = null;
} else if (name.equals("period")) {
this.period = null;
} else
super.removeChild(name, value);
}
@Override
public Base makeProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3506294:
return addRole();
case -1077769574:
return getMember();
case -14402964:
return getOnBehalfOf();
case -991726143:
return getPeriod();
default:
return super.makeProperty(hash, name);
}
}
@Override
public String[] getTypesForProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3506294:
/* role */ return new String[] { "CodeableConcept" };
case -1077769574:
/* member */ return new String[] { "Reference" };
case -14402964:
/* onBehalfOf */ return new String[] { "Reference" };
case -991726143:
/* period */ return new String[] { "Period" };
default:
return super.getTypesForProperty(hash, name);
}
}
@Override
public Base addChild(String name) throws FHIRException {
if (name.equals("role")) {
return addRole();
} else if (name.equals("member")) {
this.member = new Reference();
return this.member;
} else if (name.equals("onBehalfOf")) {
this.onBehalfOf = new Reference();
return this.onBehalfOf;
} else if (name.equals("period")) {
this.period = new Period();
return this.period;
} else
return super.addChild(name);
}
public CareTeamParticipantComponent copy() {
CareTeamParticipantComponent dst = new CareTeamParticipantComponent();
copyValues(dst);
return dst;
}
public void copyValues(CareTeamParticipantComponent dst) {
super.copyValues(dst);
if (role != null) {
dst.role = new ArrayList();
for (CodeableConcept i : role)
dst.role.add(i.copy());
}
;
dst.member = member == null ? null : member.copy();
dst.onBehalfOf = onBehalfOf == null ? null : onBehalfOf.copy();
dst.period = period == null ? null : period.copy();
}
@Override
public boolean equalsDeep(Base other_) {
if (!super.equalsDeep(other_))
return false;
if (!(other_ instanceof CareTeamParticipantComponent))
return false;
CareTeamParticipantComponent o = (CareTeamParticipantComponent) other_;
return compareDeep(role, o.role, true) && compareDeep(member, o.member, true)
&& compareDeep(onBehalfOf, o.onBehalfOf, true) && compareDeep(period, o.period, true);
}
@Override
public boolean equalsShallow(Base other_) {
if (!super.equalsShallow(other_))
return false;
if (!(other_ instanceof CareTeamParticipantComponent))
return false;
CareTeamParticipantComponent o = (CareTeamParticipantComponent) other_;
return true;
}
public boolean isEmpty() {
return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(role, member, onBehalfOf, period);
}
public String fhirType() {
return "CareTeam.participant";
}
}
/**
* Business identifiers assigned to this care team 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 Ids for this team", formalDefinition = "Business identifiers assigned to this care team by the performer or other systems which remain constant as the resource is updated and propagates from server to server.")
protected List identifier;
/**
* Indicates the current state of the care team.
*/
@Child(name = "status", type = { CodeType.class }, order = 1, min = 0, max = 1, modifier = true, summary = true)
@Description(shortDefinition = "proposed | active | suspended | inactive | entered-in-error", formalDefinition = "Indicates the current state of the care team.")
@ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://hl7.org/fhir/ValueSet/care-team-status")
protected Enumeration status;
/**
* Identifies what kind of team. This is to support differentiation between
* multiple co-existing teams, such as care plan team, episode of care team,
* longitudinal care team.
*/
@Child(name = "category", type = {
CodeableConcept.class }, order = 2, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = true)
@Description(shortDefinition = "Type of team", formalDefinition = "Identifies what kind of team. This is to support differentiation between multiple co-existing teams, such as care plan team, episode of care team, longitudinal care team.")
@ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://hl7.org/fhir/ValueSet/care-team-category")
protected List category;
/**
* A label for human use intended to distinguish like teams. E.g. the "red" vs.
* "green" trauma teams.
*/
@Child(name = "name", type = { StringType.class }, order = 3, min = 0, max = 1, modifier = false, summary = true)
@Description(shortDefinition = "Name of the team, such as crisis assessment team", formalDefinition = "A label for human use intended to distinguish like teams. E.g. the \"red\" vs. \"green\" trauma teams.")
protected StringType name;
/**
* Identifies the patient or group whose intended care is handled by the team.
*/
@Child(name = "subject", type = { Patient.class,
Group.class }, order = 4, min = 0, max = 1, modifier = false, summary = true)
@Description(shortDefinition = "Who care team is for", formalDefinition = "Identifies the patient or group whose intended care is handled by the team.")
protected Reference subject;
/**
* The actual object that is the target of the reference (Identifies the patient
* or group whose intended care is handled by the team.)
*/
protected Resource subjectTarget;
/**
* The Encounter during which this CareTeam was created or to which the creation
* of this record is tightly associated.
*/
@Child(name = "encounter", type = { Encounter.class }, order = 5, min = 0, max = 1, modifier = false, summary = true)
@Description(shortDefinition = "Encounter created as part of", formalDefinition = "The Encounter during which this CareTeam was created or to which the creation of this record is tightly associated.")
protected Reference encounter;
/**
* The actual object that is the target of the reference (The Encounter during
* which this CareTeam was created or to which the creation of this record is
* tightly associated.)
*/
protected Encounter encounterTarget;
/**
* Indicates when the team did (or is intended to) come into effect and end.
*/
@Child(name = "period", type = { Period.class }, order = 6, min = 0, max = 1, modifier = false, summary = true)
@Description(shortDefinition = "Time period team covers", formalDefinition = "Indicates when the team did (or is intended to) come into effect and end.")
protected Period period;
/**
* Identifies all people and organizations who are expected to be involved in
* the care team.
*/
@Child(name = "participant", type = {}, order = 7, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = false)
@Description(shortDefinition = "Members of the team", formalDefinition = "Identifies all people and organizations who are expected to be involved in the care team.")
protected List participant;
/**
* Describes why the care team exists.
*/
@Child(name = "reasonCode", type = {
CodeableConcept.class }, order = 8, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = false)
@Description(shortDefinition = "Why the care team exists", formalDefinition = "Describes why the care team exists.")
@ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://hl7.org/fhir/ValueSet/clinical-findings")
protected List reasonCode;
/**
* Condition(s) that this care team addresses.
*/
@Child(name = "reasonReference", type = {
Condition.class }, order = 9, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = false)
@Description(shortDefinition = "Why the care team exists", formalDefinition = "Condition(s) that this care team addresses.")
protected List reasonReference;
/**
* The actual objects that are the target of the reference (Condition(s) that
* this care team addresses.)
*/
protected List reasonReferenceTarget;
/**
* The organization responsible for the care team.
*/
@Child(name = "managingOrganization", type = {
Organization.class }, order = 10, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = true)
@Description(shortDefinition = "Organization responsible for the care team", formalDefinition = "The organization responsible for the care team.")
protected List managingOrganization;
/**
* The actual objects that are the target of the reference (The organization
* responsible for the care team.)
*/
protected List managingOrganizationTarget;
/**
* A central contact detail for the care team (that applies to all members).
*/
@Child(name = "telecom", type = {
ContactPoint.class }, order = 11, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = false)
@Description(shortDefinition = "A contact detail for the care team (that applies to all members)", formalDefinition = "A central contact detail for the care team (that applies to all members).")
protected List telecom;
/**
* Comments made about the CareTeam.
*/
@Child(name = "note", type = {
Annotation.class }, order = 12, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = false)
@Description(shortDefinition = "Comments made about the CareTeam", formalDefinition = "Comments made about the CareTeam.")
protected List note;
private static final long serialVersionUID = 1793069286L;
/**
* Constructor
*/
public CareTeam() {
super();
}
/**
* @return {@link #identifier} (Business identifiers assigned to this care team
* 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 CareTeam 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 CareTeam 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 #status} (Indicates the current state of the care team.). 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 CareTeam.status");
else if (Configuration.doAutoCreate())
this.status = new Enumeration(new CareTeamStatusEnumFactory()); // 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} (Indicates the current state of the care team.).
* This is the underlying object with id, value and extensions. The
* accessor "getStatus" gives direct access to the value
*/
public CareTeam setStatusElement(Enumeration value) {
this.status = value;
return this;
}
/**
* @return Indicates the current state of the care team.
*/
public CareTeamStatus getStatus() {
return this.status == null ? null : this.status.getValue();
}
/**
* @param value Indicates the current state of the care team.
*/
public CareTeam setStatus(CareTeamStatus value) {
if (value == null)
this.status = null;
else {
if (this.status == null)
this.status = new Enumeration(new CareTeamStatusEnumFactory());
this.status.setValue(value);
}
return this;
}
/**
* @return {@link #category} (Identifies what kind of team. This is to support
* differentiation between multiple co-existing teams, such as care plan
* team, episode of care team, longitudinal care team.)
*/
public List getCategory() {
if (this.category == null)
this.category = new ArrayList();
return this.category;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CareTeam setCategory(List theCategory) {
this.category = theCategory;
return this;
}
public boolean hasCategory() {
if (this.category == null)
return false;
for (CodeableConcept item : this.category)
if (!item.isEmpty())
return true;
return false;
}
public CodeableConcept addCategory() { // 3
CodeableConcept t = new CodeableConcept();
if (this.category == null)
this.category = new ArrayList();
this.category.add(t);
return t;
}
public CareTeam addCategory(CodeableConcept t) { // 3
if (t == null)
return this;
if (this.category == null)
this.category = new ArrayList();
this.category.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #category}, creating
* it if it does not already exist
*/
public CodeableConcept getCategoryFirstRep() {
if (getCategory().isEmpty()) {
addCategory();
}
return getCategory().get(0);
}
/**
* @return {@link #name} (A label for human use intended to distinguish like
* teams. E.g. the "red" vs. "green" trauma teams.). 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 CareTeam.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} (A label for human use intended to distinguish
* like teams. E.g. the "red" vs. "green" trauma teams.). This is
* the underlying object with id, value and extensions. The
* accessor "getName" gives direct access to the value
*/
public CareTeam setNameElement(StringType value) {
this.name = value;
return this;
}
/**
* @return A label for human use intended to distinguish like teams. E.g. the
* "red" vs. "green" trauma teams.
*/
public String getName() {
return this.name == null ? null : this.name.getValue();
}
/**
* @param value A label for human use intended to distinguish like teams. E.g.
* the "red" vs. "green" trauma teams.
*/
public CareTeam 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 #subject} (Identifies the patient or group whose intended care
* is handled by the team.)
*/
public Reference getSubject() {
if (this.subject == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CareTeam.subject");
else if (Configuration.doAutoCreate())
this.subject = new Reference(); // cc
return this.subject;
}
public boolean hasSubject() {
return this.subject != null && !this.subject.isEmpty();
}
/**
* @param value {@link #subject} (Identifies the patient or group whose intended
* care is handled by the team.)
*/
public CareTeam setSubject(Reference value) {
this.subject = value;
return this;
}
/**
* @return {@link #subject} 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. (Identifies the
* patient or group whose intended care is handled by the team.)
*/
public Resource getSubjectTarget() {
return this.subjectTarget;
}
/**
* @param value {@link #subject} 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. (Identifies the
* patient or group whose intended care is handled by the team.)
*/
public CareTeam setSubjectTarget(Resource value) {
this.subjectTarget = value;
return this;
}
/**
* @return {@link #encounter} (The Encounter during which this CareTeam was
* created or to which the creation of this record is tightly
* associated.)
*/
public Reference getEncounter() {
if (this.encounter == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CareTeam.encounter");
else if (Configuration.doAutoCreate())
this.encounter = new Reference(); // cc
return this.encounter;
}
public boolean hasEncounter() {
return this.encounter != null && !this.encounter.isEmpty();
}
/**
* @param value {@link #encounter} (The Encounter during which this CareTeam was
* created or to which the creation of this record is tightly
* associated.)
*/
public CareTeam setEncounter(Reference value) {
this.encounter = value;
return this;
}
/**
* @return {@link #encounter} 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 Encounter during
* which this CareTeam was created or to which the creation of this
* record is tightly associated.)
*/
public Encounter getEncounterTarget() {
if (this.encounterTarget == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CareTeam.encounter");
else if (Configuration.doAutoCreate())
this.encounterTarget = new Encounter(); // aa
return this.encounterTarget;
}
/**
* @param value {@link #encounter} 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 Encounter
* during which this CareTeam was created or to which the creation
* of this record is tightly associated.)
*/
public CareTeam setEncounterTarget(Encounter value) {
this.encounterTarget = value;
return this;
}
/**
* @return {@link #period} (Indicates when the team did (or is intended to) come
* into effect and end.)
*/
public Period getPeriod() {
if (this.period == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create CareTeam.period");
else if (Configuration.doAutoCreate())
this.period = new Period(); // cc
return this.period;
}
public boolean hasPeriod() {
return this.period != null && !this.period.isEmpty();
}
/**
* @param value {@link #period} (Indicates when the team did (or is intended to)
* come into effect and end.)
*/
public CareTeam setPeriod(Period value) {
this.period = value;
return this;
}
/**
* @return {@link #participant} (Identifies all people and organizations who are
* expected to be involved in the care team.)
*/
public List getParticipant() {
if (this.participant == null)
this.participant = new ArrayList();
return this.participant;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CareTeam setParticipant(List theParticipant) {
this.participant = theParticipant;
return this;
}
public boolean hasParticipant() {
if (this.participant == null)
return false;
for (CareTeamParticipantComponent item : this.participant)
if (!item.isEmpty())
return true;
return false;
}
public CareTeamParticipantComponent addParticipant() { // 3
CareTeamParticipantComponent t = new CareTeamParticipantComponent();
if (this.participant == null)
this.participant = new ArrayList();
this.participant.add(t);
return t;
}
public CareTeam addParticipant(CareTeamParticipantComponent t) { // 3
if (t == null)
return this;
if (this.participant == null)
this.participant = new ArrayList();
this.participant.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #participant},
* creating it if it does not already exist
*/
public CareTeamParticipantComponent getParticipantFirstRep() {
if (getParticipant().isEmpty()) {
addParticipant();
}
return getParticipant().get(0);
}
/**
* @return {@link #reasonCode} (Describes why the care team exists.)
*/
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 CareTeam 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 CareTeam 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} (Condition(s) that this care team
* addresses.)
*/
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 CareTeam 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 CareTeam 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;
}
/**
* @deprecated Use Reference#setResource(IBaseResource) instead
*/
@Deprecated
public Condition addReasonReferenceTarget() {
Condition r = new Condition();
if (this.reasonReferenceTarget == null)
this.reasonReferenceTarget = new ArrayList();
this.reasonReferenceTarget.add(r);
return r;
}
/**
* @return {@link #managingOrganization} (The organization responsible for the
* care team.)
*/
public List getManagingOrganization() {
if (this.managingOrganization == null)
this.managingOrganization = new ArrayList();
return this.managingOrganization;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CareTeam setManagingOrganization(List theManagingOrganization) {
this.managingOrganization = theManagingOrganization;
return this;
}
public boolean hasManagingOrganization() {
if (this.managingOrganization == null)
return false;
for (Reference item : this.managingOrganization)
if (!item.isEmpty())
return true;
return false;
}
public Reference addManagingOrganization() { // 3
Reference t = new Reference();
if (this.managingOrganization == null)
this.managingOrganization = new ArrayList();
this.managingOrganization.add(t);
return t;
}
public CareTeam addManagingOrganization(Reference t) { // 3
if (t == null)
return this;
if (this.managingOrganization == null)
this.managingOrganization = new ArrayList();
this.managingOrganization.add(t);
return this;
}
/**
* @return The first repetition of repeating field
* {@link #managingOrganization}, creating it if it does not already
* exist
*/
public Reference getManagingOrganizationFirstRep() {
if (getManagingOrganization().isEmpty()) {
addManagingOrganization();
}
return getManagingOrganization().get(0);
}
/**
* @deprecated Use Reference#setResource(IBaseResource) instead
*/
@Deprecated
public List getManagingOrganizationTarget() {
if (this.managingOrganizationTarget == null)
this.managingOrganizationTarget = new ArrayList();
return this.managingOrganizationTarget;
}
/**
* @deprecated Use Reference#setResource(IBaseResource) instead
*/
@Deprecated
public Organization addManagingOrganizationTarget() {
Organization r = new Organization();
if (this.managingOrganizationTarget == null)
this.managingOrganizationTarget = new ArrayList();
this.managingOrganizationTarget.add(r);
return r;
}
/**
* @return {@link #telecom} (A central contact detail for the care team (that
* applies to all members).)
*/
public List getTelecom() {
if (this.telecom == null)
this.telecom = new ArrayList();
return this.telecom;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public CareTeam setTelecom(List theTelecom) {
this.telecom = theTelecom;
return this;
}
public boolean hasTelecom() {
if (this.telecom == null)
return false;
for (ContactPoint item : this.telecom)
if (!item.isEmpty())
return true;
return false;
}
public ContactPoint addTelecom() { // 3
ContactPoint t = new ContactPoint();
if (this.telecom == null)
this.telecom = new ArrayList();
this.telecom.add(t);
return t;
}
public CareTeam addTelecom(ContactPoint t) { // 3
if (t == null)
return this;
if (this.telecom == null)
this.telecom = new ArrayList();
this.telecom.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #telecom}, creating it
* if it does not already exist
*/
public ContactPoint getTelecomFirstRep() {
if (getTelecom().isEmpty()) {
addTelecom();
}
return getTelecom().get(0);
}
/**
* @return {@link #note} (Comments made about the CareTeam.)
*/
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 CareTeam 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 CareTeam 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("identifier", "Identifier",
"Business identifiers assigned to this care team 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("status", "code", "Indicates the current state of the care team.", 0, 1, status));
children.add(new Property("category", "CodeableConcept",
"Identifies what kind of team. This is to support differentiation between multiple co-existing teams, such as care plan team, episode of care team, longitudinal care team.",
0, java.lang.Integer.MAX_VALUE, category));
children.add(new Property("name", "string",
"A label for human use intended to distinguish like teams. E.g. the \"red\" vs. \"green\" trauma teams.", 0, 1,
name));
children.add(new Property("subject", "Reference(Patient|Group)",
"Identifies the patient or group whose intended care is handled by the team.", 0, 1, subject));
children.add(new Property("encounter", "Reference(Encounter)",
"The Encounter during which this CareTeam was created or to which the creation of this record is tightly associated.",
0, 1, encounter));
children.add(new Property("period", "Period",
"Indicates when the team did (or is intended to) come into effect and end.", 0, 1, period));
children.add(new Property("participant", "",
"Identifies all people and organizations who are expected to be involved in the care team.", 0,
java.lang.Integer.MAX_VALUE, participant));
children.add(new Property("reasonCode", "CodeableConcept", "Describes why the care team exists.", 0,
java.lang.Integer.MAX_VALUE, reasonCode));
children.add(new Property("reasonReference", "Reference(Condition)", "Condition(s) that this care team addresses.",
0, java.lang.Integer.MAX_VALUE, reasonReference));
children.add(new Property("managingOrganization", "Reference(Organization)",
"The organization responsible for the care team.", 0, java.lang.Integer.MAX_VALUE, managingOrganization));
children.add(new Property("telecom", "ContactPoint",
"A central contact detail for the care team (that applies to all members).", 0, java.lang.Integer.MAX_VALUE,
telecom));
children.add(
new Property("note", "Annotation", "Comments made about the CareTeam.", 0, java.lang.Integer.MAX_VALUE, note));
}
@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 care team 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 -892481550:
/* status */ return new Property("status", "code", "Indicates the current state of the care team.", 0, 1, status);
case 50511102:
/* category */ return new Property("category", "CodeableConcept",
"Identifies what kind of team. This is to support differentiation between multiple co-existing teams, such as care plan team, episode of care team, longitudinal care team.",
0, java.lang.Integer.MAX_VALUE, category);
case 3373707:
/* name */ return new Property("name", "string",
"A label for human use intended to distinguish like teams. E.g. the \"red\" vs. \"green\" trauma teams.", 0,
1, name);
case -1867885268:
/* subject */ return new Property("subject", "Reference(Patient|Group)",
"Identifies the patient or group whose intended care is handled by the team.", 0, 1, subject);
case 1524132147:
/* encounter */ return new Property("encounter", "Reference(Encounter)",
"The Encounter during which this CareTeam was created or to which the creation of this record is tightly associated.",
0, 1, encounter);
case -991726143:
/* period */ return new Property("period", "Period",
"Indicates when the team did (or is intended to) come into effect and end.", 0, 1, period);
case 767422259:
/* participant */ return new Property("participant", "",
"Identifies all people and organizations who are expected to be involved in the care team.", 0,
java.lang.Integer.MAX_VALUE, participant);
case 722137681:
/* reasonCode */ return new Property("reasonCode", "CodeableConcept", "Describes why the care team exists.", 0,
java.lang.Integer.MAX_VALUE, reasonCode);
case -1146218137:
/* reasonReference */ return new Property("reasonReference", "Reference(Condition)",
"Condition(s) that this care team addresses.", 0, java.lang.Integer.MAX_VALUE, reasonReference);
case -2058947787:
/* managingOrganization */ return new Property("managingOrganization", "Reference(Organization)",
"The organization responsible for the care team.", 0, java.lang.Integer.MAX_VALUE, managingOrganization);
case -1429363305:
/* telecom */ return new Property("telecom", "ContactPoint",
"A central contact detail for the care team (that applies to all members).", 0, java.lang.Integer.MAX_VALUE,
telecom);
case 3387378:
/* note */ return new Property("note", "Annotation", "Comments made about the CareTeam.", 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 -1618432855:
/* identifier */ return this.identifier == null ? new Base[0]
: this.identifier.toArray(new Base[this.identifier.size()]); // Identifier
case -892481550:
/* status */ return this.status == null ? new Base[0] : new Base[] { this.status }; // Enumeration
case 50511102:
/* category */ return this.category == null ? new Base[0] : this.category.toArray(new Base[this.category.size()]); // CodeableConcept
case 3373707:
/* name */ return this.name == null ? new Base[0] : new Base[] { this.name }; // StringType
case -1867885268:
/* subject */ return this.subject == null ? new Base[0] : new Base[] { this.subject }; // Reference
case 1524132147:
/* encounter */ return this.encounter == null ? new Base[0] : new Base[] { this.encounter }; // Reference
case -991726143:
/* period */ return this.period == null ? new Base[0] : new Base[] { this.period }; // Period
case 767422259:
/* participant */ return this.participant == null ? new Base[0]
: this.participant.toArray(new Base[this.participant.size()]); // CareTeamParticipantComponent
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 -2058947787:
/* managingOrganization */ return this.managingOrganization == null ? new Base[0]
: this.managingOrganization.toArray(new Base[this.managingOrganization.size()]); // Reference
case -1429363305:
/* telecom */ return this.telecom == null ? new Base[0] : this.telecom.toArray(new Base[this.telecom.size()]); // ContactPoint
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 -1618432855: // identifier
this.getIdentifier().add(castToIdentifier(value)); // Identifier
return value;
case -892481550: // status
value = new CareTeamStatusEnumFactory().fromType(castToCode(value));
this.status = (Enumeration) value; // Enumeration
return value;
case 50511102: // category
this.getCategory().add(castToCodeableConcept(value)); // CodeableConcept
return value;
case 3373707: // name
this.name = castToString(value); // StringType
return value;
case -1867885268: // subject
this.subject = castToReference(value); // Reference
return value;
case 1524132147: // encounter
this.encounter = castToReference(value); // Reference
return value;
case -991726143: // period
this.period = castToPeriod(value); // Period
return value;
case 767422259: // participant
this.getParticipant().add((CareTeamParticipantComponent) value); // CareTeamParticipantComponent
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 -2058947787: // managingOrganization
this.getManagingOrganization().add(castToReference(value)); // Reference
return value;
case -1429363305: // telecom
this.getTelecom().add(castToContactPoint(value)); // ContactPoint
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("identifier")) {
this.getIdentifier().add(castToIdentifier(value));
} else if (name.equals("status")) {
value = new CareTeamStatusEnumFactory().fromType(castToCode(value));
this.status = (Enumeration) value; // Enumeration
} else if (name.equals("category")) {
this.getCategory().add(castToCodeableConcept(value));
} else if (name.equals("name")) {
this.name = castToString(value); // StringType
} else if (name.equals("subject")) {
this.subject = castToReference(value); // Reference
} else if (name.equals("encounter")) {
this.encounter = castToReference(value); // Reference
} else if (name.equals("period")) {
this.period = castToPeriod(value); // Period
} else if (name.equals("participant")) {
this.getParticipant().add((CareTeamParticipantComponent) value);
} else if (name.equals("reasonCode")) {
this.getReasonCode().add(castToCodeableConcept(value));
} else if (name.equals("reasonReference")) {
this.getReasonReference().add(castToReference(value));
} else if (name.equals("managingOrganization")) {
this.getManagingOrganization().add(castToReference(value));
} else if (name.equals("telecom")) {
this.getTelecom().add(castToContactPoint(value));
} 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("identifier")) {
this.getIdentifier().remove(castToIdentifier(value));
} else if (name.equals("status")) {
this.status = null;
} else if (name.equals("category")) {
this.getCategory().remove(castToCodeableConcept(value));
} else if (name.equals("name")) {
this.name = null;
} else if (name.equals("subject")) {
this.subject = null;
} else if (name.equals("encounter")) {
this.encounter = null;
} else if (name.equals("period")) {
this.period = null;
} else if (name.equals("participant")) {
this.getParticipant().remove((CareTeamParticipantComponent) value);
} else if (name.equals("reasonCode")) {
this.getReasonCode().remove(castToCodeableConcept(value));
} else if (name.equals("reasonReference")) {
this.getReasonReference().remove(castToReference(value));
} else if (name.equals("managingOrganization")) {
this.getManagingOrganization().remove(castToReference(value));
} else if (name.equals("telecom")) {
this.getTelecom().remove(castToContactPoint(value));
} 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 -1618432855:
return addIdentifier();
case -892481550:
return getStatusElement();
case 50511102:
return addCategory();
case 3373707:
return getNameElement();
case -1867885268:
return getSubject();
case 1524132147:
return getEncounter();
case -991726143:
return getPeriod();
case 767422259:
return addParticipant();
case 722137681:
return addReasonCode();
case -1146218137:
return addReasonReference();
case -2058947787:
return addManagingOrganization();
case -1429363305:
return addTelecom();
case 3387378:
return addNote();
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 -892481550:
/* status */ return new String[] { "code" };
case 50511102:
/* category */ return new String[] { "CodeableConcept" };
case 3373707:
/* name */ return new String[] { "string" };
case -1867885268:
/* subject */ return new String[] { "Reference" };
case 1524132147:
/* encounter */ return new String[] { "Reference" };
case -991726143:
/* period */ return new String[] { "Period" };
case 767422259:
/* participant */ return new String[] {};
case 722137681:
/* reasonCode */ return new String[] { "CodeableConcept" };
case -1146218137:
/* reasonReference */ return new String[] { "Reference" };
case -2058947787:
/* managingOrganization */ return new String[] { "Reference" };
case -1429363305:
/* telecom */ return new String[] { "ContactPoint" };
case 3387378:
/* note */ return new String[] { "Annotation" };
default:
return super.getTypesForProperty(hash, name);
}
}
@Override
public Base addChild(String name) throws FHIRException {
if (name.equals("identifier")) {
return addIdentifier();
} else if (name.equals("status")) {
throw new FHIRException("Cannot call addChild on a singleton property CareTeam.status");
} else if (name.equals("category")) {
return addCategory();
} else if (name.equals("name")) {
throw new FHIRException("Cannot call addChild on a singleton property CareTeam.name");
} else if (name.equals("subject")) {
this.subject = new Reference();
return this.subject;
} else if (name.equals("encounter")) {
this.encounter = new Reference();
return this.encounter;
} else if (name.equals("period")) {
this.period = new Period();
return this.period;
} else if (name.equals("participant")) {
return addParticipant();
} else if (name.equals("reasonCode")) {
return addReasonCode();
} else if (name.equals("reasonReference")) {
return addReasonReference();
} else if (name.equals("managingOrganization")) {
return addManagingOrganization();
} else if (name.equals("telecom")) {
return addTelecom();
} else if (name.equals("note")) {
return addNote();
} else
return super.addChild(name);
}
public String fhirType() {
return "CareTeam";
}
public CareTeam copy() {
CareTeam dst = new CareTeam();
copyValues(dst);
return dst;
}
public void copyValues(CareTeam dst) {
super.copyValues(dst);
if (identifier != null) {
dst.identifier = new ArrayList();
for (Identifier i : identifier)
dst.identifier.add(i.copy());
}
;
dst.status = status == null ? null : status.copy();
if (category != null) {
dst.category = new ArrayList();
for (CodeableConcept i : category)
dst.category.add(i.copy());
}
;
dst.name = name == null ? null : name.copy();
dst.subject = subject == null ? null : subject.copy();
dst.encounter = encounter == null ? null : encounter.copy();
dst.period = period == null ? null : period.copy();
if (participant != null) {
dst.participant = new ArrayList();
for (CareTeamParticipantComponent i : participant)
dst.participant.add(i.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 (managingOrganization != null) {
dst.managingOrganization = new ArrayList();
for (Reference i : managingOrganization)
dst.managingOrganization.add(i.copy());
}
;
if (telecom != null) {
dst.telecom = new ArrayList();
for (ContactPoint i : telecom)
dst.telecom.add(i.copy());
}
;
if (note != null) {
dst.note = new ArrayList();
for (Annotation i : note)
dst.note.add(i.copy());
}
;
}
protected CareTeam typedCopy() {
return copy();
}
@Override
public boolean equalsDeep(Base other_) {
if (!super.equalsDeep(other_))
return false;
if (!(other_ instanceof CareTeam))
return false;
CareTeam o = (CareTeam) other_;
return compareDeep(identifier, o.identifier, true) && compareDeep(status, o.status, true)
&& compareDeep(category, o.category, true) && compareDeep(name, o.name, true)
&& compareDeep(subject, o.subject, true) && compareDeep(encounter, o.encounter, true)
&& compareDeep(period, o.period, true) && compareDeep(participant, o.participant, true)
&& compareDeep(reasonCode, o.reasonCode, true) && compareDeep(reasonReference, o.reasonReference, true)
&& compareDeep(managingOrganization, o.managingOrganization, true) && compareDeep(telecom, o.telecom, true)
&& compareDeep(note, o.note, true);
}
@Override
public boolean equalsShallow(Base other_) {
if (!super.equalsShallow(other_))
return false;
if (!(other_ instanceof CareTeam))
return false;
CareTeam o = (CareTeam) other_;
return compareValues(status, o.status, true) && compareValues(name, o.name, true);
}
public boolean isEmpty() {
return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(identifier, status, category, name, subject,
encounter, period, participant, reasonCode, reasonReference, managingOrganization, telecom, note);
}
@Override
public ResourceType getResourceType() {
return ResourceType.CareTeam;
}
/**
* Search parameter: date
*
* Description: Time period team covers
* Type: date
* Path: CareTeam.period
*
*/
@SearchParamDefinition(name = "date", path = "CareTeam.period", description = "Time period team covers", type = "date")
public static final String SP_DATE = "date";
/**
* Fluent Client search parameter constant for date
*
* Description: Time period team covers
* Type: date
* Path: CareTeam.period
*
*/
public static final ca.uhn.fhir.rest.gclient.DateClientParam DATE = new ca.uhn.fhir.rest.gclient.DateClientParam(
SP_DATE);
/**
* Search parameter: identifier
*
* Description: External Ids for this team
* Type: token
* Path: CareTeam.identifier
*
*/
@SearchParamDefinition(name = "identifier", path = "CareTeam.identifier", description = "External Ids for this team", type = "token")
public static final String SP_IDENTIFIER = "identifier";
/**
* Fluent Client search parameter constant for identifier
*
* Description: External Ids for this team
* Type: token
* Path: CareTeam.identifier
*
*/
public static final ca.uhn.fhir.rest.gclient.TokenClientParam IDENTIFIER = new ca.uhn.fhir.rest.gclient.TokenClientParam(
SP_IDENTIFIER);
/**
* Search parameter: patient
*
* Description: Who care team is for
* Type: reference
* Path: CareTeam.subject
*
*/
@SearchParamDefinition(name = "patient", path = "CareTeam.subject.where(resolve() is Patient)", description = "Who care team is 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: Who care team is for
* Type: reference
* Path: CareTeam.subject
*
*/
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 "CareTeam:patient".
*/
public static final ca.uhn.fhir.model.api.Include INCLUDE_PATIENT = new ca.uhn.fhir.model.api.Include(
"CareTeam:patient").toLocked();
/**
* Search parameter: subject
*
* Description: Who care team is for
* Type: reference
* Path: CareTeam.subject
*
*/
@SearchParamDefinition(name = "subject", path = "CareTeam.subject", description = "Who care team is for", type = "reference", target = {
Group.class, Patient.class })
public static final String SP_SUBJECT = "subject";
/**
* Fluent Client search parameter constant for subject
*
* Description: Who care team is for
* Type: reference
* Path: CareTeam.subject
*
*/
public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam SUBJECT = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(
SP_SUBJECT);
/**
* Constant for fluent queries to be used to add include statements. Specifies
* the path value of "CareTeam:subject".
*/
public static final ca.uhn.fhir.model.api.Include INCLUDE_SUBJECT = new ca.uhn.fhir.model.api.Include(
"CareTeam:subject").toLocked();
/**
* Search parameter: encounter
*
* Description: Encounter created as part of
* Type: reference
* Path: CareTeam.encounter
*
*/
@SearchParamDefinition(name = "encounter", path = "CareTeam.encounter", description = "Encounter created as part of", type = "reference", providesMembershipIn = {
@ca.uhn.fhir.model.api.annotation.Compartment(name = "Encounter") }, target = { Encounter.class })
public static final String SP_ENCOUNTER = "encounter";
/**
* Fluent Client search parameter constant for encounter
*
* Description: Encounter created as part of
* Type: reference
* Path: CareTeam.encounter
*
*/
public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam ENCOUNTER = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(
SP_ENCOUNTER);
/**
* Constant for fluent queries to be used to add include statements. Specifies
* the path value of "CareTeam:encounter".
*/
public static final ca.uhn.fhir.model.api.Include INCLUDE_ENCOUNTER = new ca.uhn.fhir.model.api.Include(
"CareTeam:encounter").toLocked();
/**
* Search parameter: category
*
* Description: Type of team
* Type: token
* Path: CareTeam.category
*
*/
@SearchParamDefinition(name = "category", path = "CareTeam.category", description = "Type of team", type = "token")
public static final String SP_CATEGORY = "category";
/**
* Fluent Client search parameter constant for category
*
* Description: Type of team
* Type: token
* Path: CareTeam.category
*
*/
public static final ca.uhn.fhir.rest.gclient.TokenClientParam CATEGORY = new ca.uhn.fhir.rest.gclient.TokenClientParam(
SP_CATEGORY);
/**
* Search parameter: participant
*
* Description: Who is involved
* Type: reference
* Path: CareTeam.participant.member
*
*/
@SearchParamDefinition(name = "participant", path = "CareTeam.participant.member", description = "Who is involved", type = "reference", providesMembershipIn = {
@ca.uhn.fhir.model.api.annotation.Compartment(name = "Patient"),
@ca.uhn.fhir.model.api.annotation.Compartment(name = "Practitioner"),
@ca.uhn.fhir.model.api.annotation.Compartment(name = "RelatedPerson") }, target = { CareTeam.class,
Organization.class, Patient.class, Practitioner.class, PractitionerRole.class, RelatedPerson.class })
public static final String SP_PARTICIPANT = "participant";
/**
* Fluent Client search parameter constant for participant
*
* Description: Who is involved
* Type: reference
* Path: CareTeam.participant.member
*
*/
public static final ca.uhn.fhir.rest.gclient.ReferenceClientParam PARTICIPANT = new ca.uhn.fhir.rest.gclient.ReferenceClientParam(
SP_PARTICIPANT);
/**
* Constant for fluent queries to be used to add include statements. Specifies
* the path value of "CareTeam:participant".
*/
public static final ca.uhn.fhir.model.api.Include INCLUDE_PARTICIPANT = new ca.uhn.fhir.model.api.Include(
"CareTeam:participant").toLocked();
/**
* Search parameter: status
*
* Description: proposed | active | suspended | inactive |
* entered-in-error
* Type: token
* Path: CareTeam.status
*
*/
@SearchParamDefinition(name = "status", path = "CareTeam.status", description = "proposed | active | suspended | inactive | entered-in-error", type = "token")
public static final String SP_STATUS = "status";
/**
* Fluent Client search parameter constant for status
*
* Description: proposed | active | suspended | inactive |
* entered-in-error
* Type: token
* Path: CareTeam.status
*
*/
public static final ca.uhn.fhir.rest.gclient.TokenClientParam STATUS = new ca.uhn.fhir.rest.gclient.TokenClientParam(
SP_STATUS);
}