Package ca.uhn.fhir.model.dstu2.valueset
Enum EpisodeOfCareStatusEnum
- All Implemented Interfaces:
Serializable
,Comparable<EpisodeOfCareStatusEnum>
-
Enum Constant Summary
Enum ConstantDescriptionDisplay: Active
Code Value: active This episode of care is current.Display: Cancelled
Code Value: 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.Display: Finished
Code Value: finished This episode of care is finished at the organization is not expecting to be providing care to the patient.Display: On Hold
Code Value: onhold This episode of care is on hold, the organization has limited responsibility for the patient (such as while on respite).Display: Planned
Code Value: planned This episode of care is planned to start at the date specified in the period.start.Display: Waitlist
Code Value: waitlist This episode has been placed on a waitlist, pending the episode being made active (or cancelled). -
Field Summary
Modifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder
<EpisodeOfCareStatusEnum> Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set:static final String
Name for this Value Set: EpisodeOfCareStatus -
Method Summary
Modifier and TypeMethodDescriptionstatic EpisodeOfCareStatusEnum
Returns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valuestatic EpisodeOfCareStatusEnum
Returns the enum constant of this type with the specified name.static EpisodeOfCareStatusEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PLANNED
Display: Planned
Code Value: 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
Display: Waitlist
Code Value: waitlist This episode has been placed on a waitlist, pending the episode being made active (or cancelled). -
ACTIVE
Display: Active
Code Value: active This episode of care is current. -
ON_HOLD
Display: On Hold
Code Value: onhold This episode of care is on hold, the organization has limited responsibility for the patient (such as while on respite). -
FINISHED
Display: Finished
Code Value: 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
Display: Cancelled
Code Value: 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.
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
-
VALUESET_NAME
Name for this Value Set: EpisodeOfCareStatus- See Also:
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<EpisodeOfCareStatusEnum> VALUESET_BINDERConverts codes to their respective enumerated values
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getCode
Returns the code associated with this enumerated value -
getSystem
Returns the code system associated with this enumerated value -
forCode
Returns the enumerated value associated with this code
-