Package ca.uhn.fhir.model.dstu2.valueset
Enum EpisodeOfCareStatusEnum
- java.lang.Object
-
- java.lang.Enum<EpisodeOfCareStatusEnum>
-
- ca.uhn.fhir.model.dstu2.valueset.EpisodeOfCareStatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<EpisodeOfCareStatusEnum>
public enum EpisodeOfCareStatusEnum extends Enum<EpisodeOfCareStatusEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVEDisplay: Active
Code Value: active This episode of care is current.CANCELLEDDisplay: 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.FINISHEDDisplay: Finished
Code Value: finished This episode of care is finished at the organization is not expecting to be providing care to the patient.ON_HOLDDisplay: 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).PLANNEDDisplay: Planned
Code Value: planned This episode of care is planned to start at the date specified in the period.start.WAITLISTDisplay: Waitlist
Code Value: waitlist This episode has been placed on a waitlist, pending the episode being made active (or cancelled).
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<EpisodeOfCareStatusEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: EpisodeOfCareStatus
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EpisodeOfCareStatusEnumforCode(String theCode)Returns the enumerated value associated with this codeStringgetCode()Returns the code associated with this enumerated valueStringgetSystem()Returns the code system associated with this enumerated valuestatic EpisodeOfCareStatusEnumvalueOf(String name)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 Detail
-
PLANNED
public static final EpisodeOfCareStatusEnum 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
public static final EpisodeOfCareStatusEnum WAITLIST
Display: Waitlist
Code Value: waitlist This episode has been placed on a waitlist, pending the episode being made active (or cancelled).
-
ACTIVE
public static final EpisodeOfCareStatusEnum ACTIVE
Display: Active
Code Value: active This episode of care is current.
-
ON_HOLD
public static final EpisodeOfCareStatusEnum 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
public static final EpisodeOfCareStatusEnum 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
public static final EpisodeOfCareStatusEnum 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 Detail
-
VALUESET_IDENTIFIER
public static final String VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
- Constant Field Values
-
VALUESET_NAME
public static final String VALUESET_NAME
Name for this Value Set: EpisodeOfCareStatus- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<EpisodeOfCareStatusEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static EpisodeOfCareStatusEnum[] 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 (EpisodeOfCareStatusEnum c : EpisodeOfCareStatusEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EpisodeOfCareStatusEnum 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
-
forCode
public static EpisodeOfCareStatusEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-