Enum EpisodeOfCareStatus.ValueSet
- java.lang.Object
-
- java.lang.Enum<EpisodeOfCareStatus.ValueSet>
-
- com.ibm.fhir.model.type.code.EpisodeOfCareStatus.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<EpisodeOfCareStatus.ValueSet>
- Enclosing class:
- EpisodeOfCareStatus
public static enum EpisodeOfCareStatus.ValueSet extends Enum<EpisodeOfCareStatus.ValueSet>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EpisodeOfCareStatus.ValueSetfrom(String value)Factory method for creating EpisodeOfCareStatus.ValueSet values from a passed string value.Stringvalue()static EpisodeOfCareStatus.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static EpisodeOfCareStatus.ValueSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLANNED
public static final EpisodeOfCareStatus.ValueSet PLANNED
PlannedThis 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 the patient is eligible to receive services, or be organizing to make resources available to provide care services.
-
WAITLIST
public static final EpisodeOfCareStatus.ValueSet WAITLIST
WaitlistThis episode has been placed on a waitlist, pending the episode being made active (or cancelled).
-
ACTIVE
public static final EpisodeOfCareStatus.ValueSet ACTIVE
ActiveThis episode of care is current.
-
ONHOLD
public static final EpisodeOfCareStatus.ValueSet ONHOLD
On HoldThis episode of care is on hold; the organization has limited responsibility for the patient (such as while on respite).
-
FINISHED
public static final EpisodeOfCareStatus.ValueSet FINISHED
FinishedThis episode of care is finished and the organization is not expecting to be providing further care to the patient. Can also be known as "closed", "completed" or other similar terms.
-
CANCELLED
public static final EpisodeOfCareStatus.ValueSet CANCELLED
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. It indicates that services terminated outside the planned/expected workflow.
-
ENTERED_IN_ERROR
public static final EpisodeOfCareStatus.ValueSet ENTERED_IN_ERROR
Entered in ErrorThis instance should not have been part of this patient's medical record.
-
-
Method Detail
-
values
public static EpisodeOfCareStatus.ValueSet[] 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 (EpisodeOfCareStatus.ValueSet c : EpisodeOfCareStatus.ValueSet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EpisodeOfCareStatus.ValueSet 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
-
value
public String value()
- Returns:
- The java.lang.String value of the code represented by this enum
-
from
public static EpisodeOfCareStatus.ValueSet from(String value)
Factory method for creating EpisodeOfCareStatus.ValueSet values from a passed string value.- Parameters:
value- A string that matches one of the allowed code values- Throws:
IllegalArgumentException- If the passed string cannot be parsed into an allowed code value
-
-