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

com.ibm.fhir.model.resource.EpisodeOfCare Maven / Gradle / Ivy

/*
 * (C) Copyright IBM Corp. 2019, 2021
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package com.ibm.fhir.model.resource;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Objects;

import javax.annotation.Generated;

import com.ibm.fhir.model.annotation.Binding;
import com.ibm.fhir.model.annotation.Constraint;
import com.ibm.fhir.model.annotation.Maturity;
import com.ibm.fhir.model.annotation.ReferenceTarget;
import com.ibm.fhir.model.annotation.Required;
import com.ibm.fhir.model.annotation.Summary;
import com.ibm.fhir.model.type.BackboneElement;
import com.ibm.fhir.model.type.Code;
import com.ibm.fhir.model.type.CodeableConcept;
import com.ibm.fhir.model.type.Extension;
import com.ibm.fhir.model.type.Identifier;
import com.ibm.fhir.model.type.Meta;
import com.ibm.fhir.model.type.Narrative;
import com.ibm.fhir.model.type.Period;
import com.ibm.fhir.model.type.PositiveInt;
import com.ibm.fhir.model.type.Reference;
import com.ibm.fhir.model.type.Uri;
import com.ibm.fhir.model.type.code.BindingStrength;
import com.ibm.fhir.model.type.code.EpisodeOfCareStatus;
import com.ibm.fhir.model.type.code.StandardsStatus;
import com.ibm.fhir.model.util.ValidationSupport;
import com.ibm.fhir.model.visitor.Visitor;

/**
 * An association between a patient and an organization / healthcare provider(s) during which time encounters may occur. 
 * The managing organization assumes a level of responsibility for the patient during this time.
 * 
 * 

Maturity level: FMM2 (Trial Use) */ @Maturity( level = 2, status = StandardsStatus.Value.TRIAL_USE ) @Constraint( id = "episodeOfCare-0", level = "Warning", location = "diagnosis.role", description = "SHOULD contain a code from value set http://hl7.org/fhir/ValueSet/diagnosis-role", expression = "$this.memberOf('http://hl7.org/fhir/ValueSet/diagnosis-role', 'preferred')", generated = true ) @Generated("com.ibm.fhir.tools.CodeGenerator") public class EpisodeOfCare extends DomainResource { private final List identifier; @Summary @Binding( bindingName = "EpisodeOfCareStatus", strength = BindingStrength.Value.REQUIRED, description = "The status of the episode of care.", valueSet = "http://hl7.org/fhir/ValueSet/episode-of-care-status|4.0.1" ) @Required private final EpisodeOfCareStatus status; private final List statusHistory; @Summary @Binding( bindingName = "EpisodeOfCareType", strength = BindingStrength.Value.EXAMPLE, description = "The type of the episode of care.", valueSet = "http://hl7.org/fhir/ValueSet/episodeofcare-type" ) private final List type; @Summary private final List diagnosis; @Summary @ReferenceTarget({ "Patient" }) @Required private final Reference patient; @Summary @ReferenceTarget({ "Organization" }) private final Reference managingOrganization; @Summary private final Period period; @ReferenceTarget({ "ServiceRequest" }) private final List referralRequest; @ReferenceTarget({ "Practitioner", "PractitionerRole" }) private final Reference careManager; @ReferenceTarget({ "CareTeam" }) private final List team; @ReferenceTarget({ "Account" }) private final List account; private EpisodeOfCare(Builder builder) { super(builder); identifier = Collections.unmodifiableList(builder.identifier); status = builder.status; statusHistory = Collections.unmodifiableList(builder.statusHistory); type = Collections.unmodifiableList(builder.type); diagnosis = Collections.unmodifiableList(builder.diagnosis); patient = builder.patient; managingOrganization = builder.managingOrganization; period = builder.period; referralRequest = Collections.unmodifiableList(builder.referralRequest); careManager = builder.careManager; team = Collections.unmodifiableList(builder.team); account = Collections.unmodifiableList(builder.account); } /** * The EpisodeOfCare may be known by different identifiers for different contexts of use, such as when an external agency * is tracking the Episode for funding purposes. * * @return * An unmodifiable list containing immutable objects of type {@link Identifier} that may be empty. */ public List getIdentifier() { return identifier; } /** * planned | waitlist | active | onhold | finished | cancelled. * * @return * An immutable object of type {@link EpisodeOfCareStatus} that is non-null. */ public EpisodeOfCareStatus getStatus() { return status; } /** * The history of statuses that the EpisodeOfCare has been through (without requiring processing the history of the * resource). * * @return * An unmodifiable list containing immutable objects of type {@link StatusHistory} that may be empty. */ public List getStatusHistory() { return statusHistory; } /** * A classification of the type of episode of care; e.g. specialist referral, disease management, type of funded care. * * @return * An unmodifiable list containing immutable objects of type {@link CodeableConcept} that may be empty. */ public List getType() { return type; } /** * The list of diagnosis relevant to this episode of care. * * @return * An unmodifiable list containing immutable objects of type {@link Diagnosis} that may be empty. */ public List getDiagnosis() { return diagnosis; } /** * The patient who is the focus of this episode of care. * * @return * An immutable object of type {@link Reference} that is non-null. */ public Reference getPatient() { return patient; } /** * The organization that has assumed the specific responsibilities for the specified duration. * * @return * An immutable object of type {@link Reference} that may be null. */ public Reference getManagingOrganization() { return managingOrganization; } /** * The interval during which the managing organization assumes the defined responsibility. * * @return * An immutable object of type {@link Period} that may be null. */ public Period getPeriod() { return period; } /** * Referral Request(s) that are fulfilled by this EpisodeOfCare, incoming referrals. * * @return * An unmodifiable list containing immutable objects of type {@link Reference} that may be empty. */ public List getReferralRequest() { return referralRequest; } /** * The practitioner that is the care manager/care coordinator for this patient. * * @return * An immutable object of type {@link Reference} that may be null. */ public Reference getCareManager() { return careManager; } /** * The list of practitioners that may be facilitating this episode of care for specific purposes. * * @return * An unmodifiable list containing immutable objects of type {@link Reference} that may be empty. */ public List getTeam() { return team; } /** * The set of accounts that may be used for billing for this EpisodeOfCare. * * @return * An unmodifiable list containing immutable objects of type {@link Reference} that may be empty. */ public List getAccount() { return account; } @Override public boolean hasChildren() { return super.hasChildren() || !identifier.isEmpty() || (status != null) || !statusHistory.isEmpty() || !type.isEmpty() || !diagnosis.isEmpty() || (patient != null) || (managingOrganization != null) || (period != null) || !referralRequest.isEmpty() || (careManager != null) || !team.isEmpty() || !account.isEmpty(); } @Override public void accept(java.lang.String elementName, int elementIndex, Visitor visitor) { if (visitor.preVisit(this)) { visitor.visitStart(elementName, elementIndex, this); if (visitor.visit(elementName, elementIndex, this)) { // visit children accept(id, "id", visitor); accept(meta, "meta", visitor); accept(implicitRules, "implicitRules", visitor); accept(language, "language", visitor); accept(text, "text", visitor); accept(contained, "contained", visitor, Resource.class); accept(extension, "extension", visitor, Extension.class); accept(modifierExtension, "modifierExtension", visitor, Extension.class); accept(identifier, "identifier", visitor, Identifier.class); accept(status, "status", visitor); accept(statusHistory, "statusHistory", visitor, StatusHistory.class); accept(type, "type", visitor, CodeableConcept.class); accept(diagnosis, "diagnosis", visitor, Diagnosis.class); accept(patient, "patient", visitor); accept(managingOrganization, "managingOrganization", visitor); accept(period, "period", visitor); accept(referralRequest, "referralRequest", visitor, Reference.class); accept(careManager, "careManager", visitor); accept(team, "team", visitor, Reference.class); accept(account, "account", visitor, Reference.class); } visitor.visitEnd(elementName, elementIndex, this); visitor.postVisit(this); } } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } EpisodeOfCare other = (EpisodeOfCare) obj; return Objects.equals(id, other.id) && Objects.equals(meta, other.meta) && Objects.equals(implicitRules, other.implicitRules) && Objects.equals(language, other.language) && Objects.equals(text, other.text) && Objects.equals(contained, other.contained) && Objects.equals(extension, other.extension) && Objects.equals(modifierExtension, other.modifierExtension) && Objects.equals(identifier, other.identifier) && Objects.equals(status, other.status) && Objects.equals(statusHistory, other.statusHistory) && Objects.equals(type, other.type) && Objects.equals(diagnosis, other.diagnosis) && Objects.equals(patient, other.patient) && Objects.equals(managingOrganization, other.managingOrganization) && Objects.equals(period, other.period) && Objects.equals(referralRequest, other.referralRequest) && Objects.equals(careManager, other.careManager) && Objects.equals(team, other.team) && Objects.equals(account, other.account); } @Override public int hashCode() { int result = hashCode; if (result == 0) { result = Objects.hash(id, meta, implicitRules, language, text, contained, extension, modifierExtension, identifier, status, statusHistory, type, diagnosis, patient, managingOrganization, period, referralRequest, careManager, team, account); hashCode = result; } return result; } @Override public Builder toBuilder() { return new Builder().from(this); } public static Builder builder() { return new Builder(); } public static class Builder extends DomainResource.Builder { private List identifier = new ArrayList<>(); private EpisodeOfCareStatus status; private List statusHistory = new ArrayList<>(); private List type = new ArrayList<>(); private List diagnosis = new ArrayList<>(); private Reference patient; private Reference managingOrganization; private Period period; private List referralRequest = new ArrayList<>(); private Reference careManager; private List team = new ArrayList<>(); private List account = new ArrayList<>(); private Builder() { super(); } /** * The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes. * * @param id * Logical id of this artifact * * @return * A reference to this Builder instance */ @Override public Builder id(java.lang.String id) { return (Builder) super.id(id); } /** * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content * might not always be associated with version changes to the resource. * * @param meta * Metadata about the resource * * @return * A reference to this Builder instance */ @Override public Builder meta(Meta meta) { return (Builder) super.meta(meta); } /** * A reference to a set of rules that were followed when the resource was constructed, and which must be understood when * processing the content. Often, this is a reference to an implementation guide that defines the special rules along * with other profiles etc. * * @param implicitRules * A set of rules under which this content was created * * @return * A reference to this Builder instance */ @Override public Builder implicitRules(Uri implicitRules) { return (Builder) super.implicitRules(implicitRules); } /** * The base language in which the resource is written. * * @param language * Language of the resource content * * @return * A reference to this Builder instance */ @Override public Builder language(Code language) { return (Builder) super.language(language); } /** * A human-readable narrative that contains a summary of the resource and can be used to represent the content of the * resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient * detail to make it "clinically safe" for a human to just read the narrative. Resource definitions may define what * content should be represented in the narrative to ensure clinical safety. * * @param text * Text summary of the resource, for human interpretation * * @return * A reference to this Builder instance */ @Override public Builder text(Narrative text) { return (Builder) super.text(text); } /** * These resources do not have an independent existence apart from the resource that contains them - they cannot be * identified independently, and nor can they have their own independent transaction scope. * *

Adds new element(s) to the existing list * * @param contained * Contained, inline Resources * * @return * A reference to this Builder instance */ @Override public Builder contained(Resource... contained) { return (Builder) super.contained(contained); } /** * These resources do not have an independent existence apart from the resource that contains them - they cannot be * identified independently, and nor can they have their own independent transaction scope. * *

Replaces the existing list with a new one containing elements from the Collection * * @param contained * Contained, inline Resources * * @return * A reference to this Builder instance */ @Override public Builder contained(Collection contained) { return (Builder) super.contained(contained); } /** * May be used to represent additional information that is not part of the basic definition of the resource. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Adds new element(s) to the existing list * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Extension... extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the resource. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Replaces the existing list with a new one containing elements from the Collection * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Collection extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the resource and that * modifies the understanding of the element that contains it and/or the understanding of the containing element's * descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and * manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the * definition of the extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Adds new element(s) to the existing list * * @param modifierExtension * Extensions that cannot be ignored * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Extension... modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * May be used to represent additional information that is not part of the basic definition of the resource and that * modifies the understanding of the element that contains it and/or the understanding of the containing element's * descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and * manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the * definition of the extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Replaces the existing list with a new one containing elements from the Collection * * @param modifierExtension * Extensions that cannot be ignored * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Collection modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * The EpisodeOfCare may be known by different identifiers for different contexts of use, such as when an external agency * is tracking the Episode for funding purposes. * *

Adds new element(s) to the existing list * * @param identifier * Business Identifier(s) relevant for this EpisodeOfCare * * @return * A reference to this Builder instance */ public Builder identifier(Identifier... identifier) { for (Identifier value : identifier) { this.identifier.add(value); } return this; } /** * The EpisodeOfCare may be known by different identifiers for different contexts of use, such as when an external agency * is tracking the Episode for funding purposes. * *

Replaces the existing list with a new one containing elements from the Collection * * @param identifier * Business Identifier(s) relevant for this EpisodeOfCare * * @return * A reference to this Builder instance */ public Builder identifier(Collection identifier) { this.identifier = new ArrayList<>(identifier); return this; } /** * planned | waitlist | active | onhold | finished | cancelled. * *

This element is required. * * @param status * planned | waitlist | active | onhold | finished | cancelled | entered-in-error * * @return * A reference to this Builder instance */ public Builder status(EpisodeOfCareStatus status) { this.status = status; return this; } /** * The history of statuses that the EpisodeOfCare has been through (without requiring processing the history of the * resource). * *

Adds new element(s) to the existing list * * @param statusHistory * Past list of status codes (the current status may be included to cover the start date of the status) * * @return * A reference to this Builder instance */ public Builder statusHistory(StatusHistory... statusHistory) { for (StatusHistory value : statusHistory) { this.statusHistory.add(value); } return this; } /** * The history of statuses that the EpisodeOfCare has been through (without requiring processing the history of the * resource). * *

Replaces the existing list with a new one containing elements from the Collection * * @param statusHistory * Past list of status codes (the current status may be included to cover the start date of the status) * * @return * A reference to this Builder instance */ public Builder statusHistory(Collection statusHistory) { this.statusHistory = new ArrayList<>(statusHistory); return this; } /** * A classification of the type of episode of care; e.g. specialist referral, disease management, type of funded care. * *

Adds new element(s) to the existing list * * @param type * Type/class - e.g. specialist referral, disease management * * @return * A reference to this Builder instance */ public Builder type(CodeableConcept... type) { for (CodeableConcept value : type) { this.type.add(value); } return this; } /** * A classification of the type of episode of care; e.g. specialist referral, disease management, type of funded care. * *

Replaces the existing list with a new one containing elements from the Collection * * @param type * Type/class - e.g. specialist referral, disease management * * @return * A reference to this Builder instance */ public Builder type(Collection type) { this.type = new ArrayList<>(type); return this; } /** * The list of diagnosis relevant to this episode of care. * *

Adds new element(s) to the existing list * * @param diagnosis * The list of diagnosis relevant to this episode of care * * @return * A reference to this Builder instance */ public Builder diagnosis(Diagnosis... diagnosis) { for (Diagnosis value : diagnosis) { this.diagnosis.add(value); } return this; } /** * The list of diagnosis relevant to this episode of care. * *

Replaces the existing list with a new one containing elements from the Collection * * @param diagnosis * The list of diagnosis relevant to this episode of care * * @return * A reference to this Builder instance */ public Builder diagnosis(Collection diagnosis) { this.diagnosis = new ArrayList<>(diagnosis); return this; } /** * The patient who is the focus of this episode of care. * *

This element is required. * *

Allowed resource types for this reference: *

    *
  • {@link Patient}
  • *
* * @param patient * The patient who is the focus of this episode of care * * @return * A reference to this Builder instance */ public Builder patient(Reference patient) { this.patient = patient; return this; } /** * The organization that has assumed the specific responsibilities for the specified duration. * *

Allowed resource types for this reference: *

    *
  • {@link Organization}
  • *
* * @param managingOrganization * Organization that assumes care * * @return * A reference to this Builder instance */ public Builder managingOrganization(Reference managingOrganization) { this.managingOrganization = managingOrganization; return this; } /** * The interval during which the managing organization assumes the defined responsibility. * * @param period * Interval during responsibility is assumed * * @return * A reference to this Builder instance */ public Builder period(Period period) { this.period = period; return this; } /** * Referral Request(s) that are fulfilled by this EpisodeOfCare, incoming referrals. * *

Adds new element(s) to the existing list * *

Allowed resource types for the references: *

    *
  • {@link ServiceRequest}
  • *
* * @param referralRequest * Originating Referral Request(s) * * @return * A reference to this Builder instance */ public Builder referralRequest(Reference... referralRequest) { for (Reference value : referralRequest) { this.referralRequest.add(value); } return this; } /** * Referral Request(s) that are fulfilled by this EpisodeOfCare, incoming referrals. * *

Replaces the existing list with a new one containing elements from the Collection * *

Allowed resource types for the references: *

    *
  • {@link ServiceRequest}
  • *
* * @param referralRequest * Originating Referral Request(s) * * @return * A reference to this Builder instance */ public Builder referralRequest(Collection referralRequest) { this.referralRequest = new ArrayList<>(referralRequest); return this; } /** * The practitioner that is the care manager/care coordinator for this patient. * *

Allowed resource types for this reference: *

    *
  • {@link Practitioner}
  • *
  • {@link PractitionerRole}
  • *
* * @param careManager * Care manager/care coordinator for the patient * * @return * A reference to this Builder instance */ public Builder careManager(Reference careManager) { this.careManager = careManager; return this; } /** * The list of practitioners that may be facilitating this episode of care for specific purposes. * *

Adds new element(s) to the existing list * *

Allowed resource types for the references: *

    *
  • {@link CareTeam}
  • *
* * @param team * Other practitioners facilitating this episode of care * * @return * A reference to this Builder instance */ public Builder team(Reference... team) { for (Reference value : team) { this.team.add(value); } return this; } /** * The list of practitioners that may be facilitating this episode of care for specific purposes. * *

Replaces the existing list with a new one containing elements from the Collection * *

Allowed resource types for the references: *

    *
  • {@link CareTeam}
  • *
* * @param team * Other practitioners facilitating this episode of care * * @return * A reference to this Builder instance */ public Builder team(Collection team) { this.team = new ArrayList<>(team); return this; } /** * The set of accounts that may be used for billing for this EpisodeOfCare. * *

Adds new element(s) to the existing list * *

Allowed resource types for the references: *

    *
  • {@link Account}
  • *
* * @param account * The set of accounts that may be used for billing for this EpisodeOfCare * * @return * A reference to this Builder instance */ public Builder account(Reference... account) { for (Reference value : account) { this.account.add(value); } return this; } /** * The set of accounts that may be used for billing for this EpisodeOfCare. * *

Replaces the existing list with a new one containing elements from the Collection * *

Allowed resource types for the references: *

    *
  • {@link Account}
  • *
* * @param account * The set of accounts that may be used for billing for this EpisodeOfCare * * @return * A reference to this Builder instance */ public Builder account(Collection account) { this.account = new ArrayList<>(account); return this; } /** * Build the {@link EpisodeOfCare} * *

Required elements: *

    *
  • status
  • *
  • patient
  • *
* * @return * An immutable object of type {@link EpisodeOfCare} * @throws IllegalStateException * if the current state cannot be built into a valid EpisodeOfCare per the base specification */ @Override public EpisodeOfCare build() { EpisodeOfCare episodeOfCare = new EpisodeOfCare(this); if (validating) { validate(episodeOfCare); } return episodeOfCare; } protected void validate(EpisodeOfCare episodeOfCare) { super.validate(episodeOfCare); ValidationSupport.checkList(episodeOfCare.identifier, "identifier", Identifier.class); ValidationSupport.requireNonNull(episodeOfCare.status, "status"); ValidationSupport.checkList(episodeOfCare.statusHistory, "statusHistory", StatusHistory.class); ValidationSupport.checkList(episodeOfCare.type, "type", CodeableConcept.class); ValidationSupport.checkList(episodeOfCare.diagnosis, "diagnosis", Diagnosis.class); ValidationSupport.requireNonNull(episodeOfCare.patient, "patient"); ValidationSupport.checkList(episodeOfCare.referralRequest, "referralRequest", Reference.class); ValidationSupport.checkList(episodeOfCare.team, "team", Reference.class); ValidationSupport.checkList(episodeOfCare.account, "account", Reference.class); ValidationSupport.checkReferenceType(episodeOfCare.patient, "patient", "Patient"); ValidationSupport.checkReferenceType(episodeOfCare.managingOrganization, "managingOrganization", "Organization"); ValidationSupport.checkReferenceType(episodeOfCare.referralRequest, "referralRequest", "ServiceRequest"); ValidationSupport.checkReferenceType(episodeOfCare.careManager, "careManager", "Practitioner", "PractitionerRole"); ValidationSupport.checkReferenceType(episodeOfCare.team, "team", "CareTeam"); ValidationSupport.checkReferenceType(episodeOfCare.account, "account", "Account"); } protected Builder from(EpisodeOfCare episodeOfCare) { super.from(episodeOfCare); identifier.addAll(episodeOfCare.identifier); status = episodeOfCare.status; statusHistory.addAll(episodeOfCare.statusHistory); type.addAll(episodeOfCare.type); diagnosis.addAll(episodeOfCare.diagnosis); patient = episodeOfCare.patient; managingOrganization = episodeOfCare.managingOrganization; period = episodeOfCare.period; referralRequest.addAll(episodeOfCare.referralRequest); careManager = episodeOfCare.careManager; team.addAll(episodeOfCare.team); account.addAll(episodeOfCare.account); return this; } } /** * The history of statuses that the EpisodeOfCare has been through (without requiring processing the history of the * resource). */ public static class StatusHistory extends BackboneElement { @Binding( bindingName = "EpisodeOfCareStatus", strength = BindingStrength.Value.REQUIRED, description = "The status of the episode of care.", valueSet = "http://hl7.org/fhir/ValueSet/episode-of-care-status|4.0.1" ) @Required private final EpisodeOfCareStatus status; @Required private final Period period; private StatusHistory(Builder builder) { super(builder); status = builder.status; period = builder.period; } /** * planned | waitlist | active | onhold | finished | cancelled. * * @return * An immutable object of type {@link EpisodeOfCareStatus} that is non-null. */ public EpisodeOfCareStatus getStatus() { return status; } /** * The period during this EpisodeOfCare that the specific status applied. * * @return * An immutable object of type {@link Period} that is non-null. */ public Period getPeriod() { return period; } @Override public boolean hasChildren() { return super.hasChildren() || (status != null) || (period != null); } @Override public void accept(java.lang.String elementName, int elementIndex, Visitor visitor) { if (visitor.preVisit(this)) { visitor.visitStart(elementName, elementIndex, this); if (visitor.visit(elementName, elementIndex, this)) { // visit children accept(id, "id", visitor); accept(extension, "extension", visitor, Extension.class); accept(modifierExtension, "modifierExtension", visitor, Extension.class); accept(status, "status", visitor); accept(period, "period", visitor); } visitor.visitEnd(elementName, elementIndex, this); visitor.postVisit(this); } } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } StatusHistory other = (StatusHistory) obj; return Objects.equals(id, other.id) && Objects.equals(extension, other.extension) && Objects.equals(modifierExtension, other.modifierExtension) && Objects.equals(status, other.status) && Objects.equals(period, other.period); } @Override public int hashCode() { int result = hashCode; if (result == 0) { result = Objects.hash(id, extension, modifierExtension, status, period); hashCode = result; } return result; } @Override public Builder toBuilder() { return new Builder().from(this); } public static Builder builder() { return new Builder(); } public static class Builder extends BackboneElement.Builder { private EpisodeOfCareStatus status; private Period period; private Builder() { super(); } /** * Unique id for the element within a resource (for internal references). This may be any string value that does not * contain spaces. * * @param id * Unique id for inter-element referencing * * @return * A reference to this Builder instance */ @Override public Builder id(java.lang.String id) { return (Builder) super.id(id); } /** * May be used to represent additional information that is not part of the basic definition of the element. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Adds new element(s) to the existing list * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Extension... extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the element. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Replaces the existing list with a new one containing elements from the Collection * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Collection extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the element and that * modifies the understanding of the element in which it is contained and/or the understanding of the containing * element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe * and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the * extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Adds new element(s) to the existing list * * @param modifierExtension * Extensions that cannot be ignored even if unrecognized * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Extension... modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * May be used to represent additional information that is not part of the basic definition of the element and that * modifies the understanding of the element in which it is contained and/or the understanding of the containing * element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe * and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the * extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Replaces the existing list with a new one containing elements from the Collection * * @param modifierExtension * Extensions that cannot be ignored even if unrecognized * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Collection modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * planned | waitlist | active | onhold | finished | cancelled. * *

This element is required. * * @param status * planned | waitlist | active | onhold | finished | cancelled | entered-in-error * * @return * A reference to this Builder instance */ public Builder status(EpisodeOfCareStatus status) { this.status = status; return this; } /** * The period during this EpisodeOfCare that the specific status applied. * *

This element is required. * * @param period * Duration the EpisodeOfCare was in the specified status * * @return * A reference to this Builder instance */ public Builder period(Period period) { this.period = period; return this; } /** * Build the {@link StatusHistory} * *

Required elements: *

    *
  • status
  • *
  • period
  • *
* * @return * An immutable object of type {@link StatusHistory} * @throws IllegalStateException * if the current state cannot be built into a valid StatusHistory per the base specification */ @Override public StatusHistory build() { StatusHistory statusHistory = new StatusHistory(this); if (validating) { validate(statusHistory); } return statusHistory; } protected void validate(StatusHistory statusHistory) { super.validate(statusHistory); ValidationSupport.requireNonNull(statusHistory.status, "status"); ValidationSupport.requireNonNull(statusHistory.period, "period"); ValidationSupport.requireValueOrChildren(statusHistory); } protected Builder from(StatusHistory statusHistory) { super.from(statusHistory); status = statusHistory.status; period = statusHistory.period; return this; } } } /** * The list of diagnosis relevant to this episode of care. */ public static class Diagnosis extends BackboneElement { @Summary @ReferenceTarget({ "Condition" }) @Required private final Reference condition; @Summary @Binding( bindingName = "DiagnosisRole", strength = BindingStrength.Value.PREFERRED, description = "The type of diagnosis this condition represents.", valueSet = "http://hl7.org/fhir/ValueSet/diagnosis-role" ) private final CodeableConcept role; @Summary private final PositiveInt rank; private Diagnosis(Builder builder) { super(builder); condition = builder.condition; role = builder.role; rank = builder.rank; } /** * A list of conditions/problems/diagnoses that this episode of care is intended to be providing care for. * * @return * An immutable object of type {@link Reference} that is non-null. */ public Reference getCondition() { return condition; } /** * Role that this diagnosis has within the episode of care (e.g. admission, billing, discharge …). * * @return * An immutable object of type {@link CodeableConcept} that may be null. */ public CodeableConcept getRole() { return role; } /** * Ranking of the diagnosis (for each role type). * * @return * An immutable object of type {@link PositiveInt} that may be null. */ public PositiveInt getRank() { return rank; } @Override public boolean hasChildren() { return super.hasChildren() || (condition != null) || (role != null) || (rank != null); } @Override public void accept(java.lang.String elementName, int elementIndex, Visitor visitor) { if (visitor.preVisit(this)) { visitor.visitStart(elementName, elementIndex, this); if (visitor.visit(elementName, elementIndex, this)) { // visit children accept(id, "id", visitor); accept(extension, "extension", visitor, Extension.class); accept(modifierExtension, "modifierExtension", visitor, Extension.class); accept(condition, "condition", visitor); accept(role, "role", visitor); accept(rank, "rank", visitor); } visitor.visitEnd(elementName, elementIndex, this); visitor.postVisit(this); } } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } Diagnosis other = (Diagnosis) obj; return Objects.equals(id, other.id) && Objects.equals(extension, other.extension) && Objects.equals(modifierExtension, other.modifierExtension) && Objects.equals(condition, other.condition) && Objects.equals(role, other.role) && Objects.equals(rank, other.rank); } @Override public int hashCode() { int result = hashCode; if (result == 0) { result = Objects.hash(id, extension, modifierExtension, condition, role, rank); hashCode = result; } return result; } @Override public Builder toBuilder() { return new Builder().from(this); } public static Builder builder() { return new Builder(); } public static class Builder extends BackboneElement.Builder { private Reference condition; private CodeableConcept role; private PositiveInt rank; private Builder() { super(); } /** * Unique id for the element within a resource (for internal references). This may be any string value that does not * contain spaces. * * @param id * Unique id for inter-element referencing * * @return * A reference to this Builder instance */ @Override public Builder id(java.lang.String id) { return (Builder) super.id(id); } /** * May be used to represent additional information that is not part of the basic definition of the element. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Adds new element(s) to the existing list * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Extension... extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the element. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Replaces the existing list with a new one containing elements from the Collection * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Collection extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the element and that * modifies the understanding of the element in which it is contained and/or the understanding of the containing * element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe * and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the * extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Adds new element(s) to the existing list * * @param modifierExtension * Extensions that cannot be ignored even if unrecognized * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Extension... modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * May be used to represent additional information that is not part of the basic definition of the element and that * modifies the understanding of the element in which it is contained and/or the understanding of the containing * element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe * and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the * extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Replaces the existing list with a new one containing elements from the Collection * * @param modifierExtension * Extensions that cannot be ignored even if unrecognized * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Collection modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * A list of conditions/problems/diagnoses that this episode of care is intended to be providing care for. * *

This element is required. * *

Allowed resource types for this reference: *

    *
  • {@link Condition}
  • *
* * @param condition * Conditions/problems/diagnoses this episode of care is for * * @return * A reference to this Builder instance */ public Builder condition(Reference condition) { this.condition = condition; return this; } /** * Role that this diagnosis has within the episode of care (e.g. admission, billing, discharge …). * * @param role * Role that this diagnosis has within the episode of care (e.g. admission, billing, discharge …) * * @return * A reference to this Builder instance */ public Builder role(CodeableConcept role) { this.role = role; return this; } /** * Ranking of the diagnosis (for each role type). * * @param rank * Ranking of the diagnosis (for each role type) * * @return * A reference to this Builder instance */ public Builder rank(PositiveInt rank) { this.rank = rank; return this; } /** * Build the {@link Diagnosis} * *

Required elements: *

    *
  • condition
  • *
* * @return * An immutable object of type {@link Diagnosis} * @throws IllegalStateException * if the current state cannot be built into a valid Diagnosis per the base specification */ @Override public Diagnosis build() { Diagnosis diagnosis = new Diagnosis(this); if (validating) { validate(diagnosis); } return diagnosis; } protected void validate(Diagnosis diagnosis) { super.validate(diagnosis); ValidationSupport.requireNonNull(diagnosis.condition, "condition"); ValidationSupport.checkReferenceType(diagnosis.condition, "condition", "Condition"); ValidationSupport.requireValueOrChildren(diagnosis); } protected Builder from(Diagnosis diagnosis) { super.from(diagnosis); condition = diagnosis.condition; role = diagnosis.role; rank = diagnosis.rank; return this; } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy