Package org.hl7.fhir.dstu2.model
Enum EpisodeOfCare.EpisodeOfCareStatus
- java.lang.Object
-
- java.lang.Enum<EpisodeOfCare.EpisodeOfCareStatus>
-
- org.hl7.fhir.dstu2.model.EpisodeOfCare.EpisodeOfCareStatus
-
- All Implemented Interfaces:
Serializable,Comparable<EpisodeOfCare.EpisodeOfCareStatus>
- Enclosing class:
- EpisodeOfCare
public static enum EpisodeOfCare.EpisodeOfCareStatus extends Enum<EpisodeOfCare.EpisodeOfCareStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVEThis episode of care is current.CANCELLEDThe episode of care was cancelled, or withdrawn from service, often selected during the planned stage as the patient may have gone elsewhere, or the circumstances have changed and the organization is unable to provide the care.FINISHEDThis episode of care is finished at the organization is not expecting to be providing care to the patient.NULLadded to help the parsersONHOLDThis episode of care is on hold, the organization has limited responsibility for the patient (such as while on respite).PLANNEDThis episode of care is planned to start at the date specified in the period.start.WAITLISTThis episode has been placed on a waitlist, pending the episode being made active (or cancelled).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EpisodeOfCare.EpisodeOfCareStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static EpisodeOfCare.EpisodeOfCareStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static EpisodeOfCare.EpisodeOfCareStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLANNED
public static final EpisodeOfCare.EpisodeOfCareStatus PLANNED
This episode of care is planned to start at the date specified in the period.start. During this status an organization may perform assessments to determine if they are eligible to receive services, or be organizing to make resources available to provide care services.
-
WAITLIST
public static final EpisodeOfCare.EpisodeOfCareStatus WAITLIST
This episode has been placed on a waitlist, pending the episode being made active (or cancelled).
-
ACTIVE
public static final EpisodeOfCare.EpisodeOfCareStatus ACTIVE
This episode of care is current.
-
ONHOLD
public static final EpisodeOfCare.EpisodeOfCareStatus ONHOLD
This episode of care is on hold, the organization has limited responsibility for the patient (such as while on respite).
-
FINISHED
public static final EpisodeOfCare.EpisodeOfCareStatus FINISHED
This episode of care is finished at the organization is not expecting to be providing care to the patient. Can also be known as "closed", "completed" or other similar terms.
-
CANCELLED
public static final EpisodeOfCare.EpisodeOfCareStatus CANCELLED
The episode of care was cancelled, or withdrawn from service, often selected during the planned stage as the patient may have gone elsewhere, or the circumstances have changed and the organization is unable to provide the care. It indicates that services terminated outside the planned/expected workflow.
-
NULL
public static final EpisodeOfCare.EpisodeOfCareStatus NULL
added to help the parsers
-
-
Method Detail
-
values
public static EpisodeOfCare.EpisodeOfCareStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EpisodeOfCare.EpisodeOfCareStatus c : EpisodeOfCare.EpisodeOfCareStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EpisodeOfCare.EpisodeOfCareStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
fromCode
public static EpisodeOfCare.EpisodeOfCareStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-