Enum CarePlanActivityStatus.ValueSet
- java.lang.Object
-
- java.lang.Enum<CarePlanActivityStatus.ValueSet>
-
- com.ibm.fhir.model.type.code.CarePlanActivityStatus.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<CarePlanActivityStatus.ValueSet>
- Enclosing class:
- CarePlanActivityStatus
public static enum CarePlanActivityStatus.ValueSet extends Enum<CarePlanActivityStatus.ValueSet>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCELLEDCancelledCOMPLETEDCompletedENTERED_IN_ERROREntered in ErrorIN_PROGRESSIn ProgressNOT_STARTEDNot StartedON_HOLDOn HoldSCHEDULEDScheduledSTOPPEDStoppedUNKNOWNUnknown
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CarePlanActivityStatus.ValueSetfrom(String value)Factory method for creating CarePlanActivityStatus.ValueSet values from a passed string value.Stringvalue()static CarePlanActivityStatus.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static CarePlanActivityStatus.ValueSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_STARTED
public static final CarePlanActivityStatus.ValueSet NOT_STARTED
Not StartedCare plan activity is planned but no action has yet been taken.
-
SCHEDULED
public static final CarePlanActivityStatus.ValueSet SCHEDULED
ScheduledAppointment or other booking has occurred but activity has not yet begun.
-
IN_PROGRESS
public static final CarePlanActivityStatus.ValueSet IN_PROGRESS
In ProgressCare plan activity has been started but is not yet complete.
-
ON_HOLD
public static final CarePlanActivityStatus.ValueSet ON_HOLD
On HoldCare plan activity was started but has temporarily ceased with an expectation of resumption at a future time.
-
COMPLETED
public static final CarePlanActivityStatus.ValueSet COMPLETED
CompletedCare plan activity has been completed (more or less) as planned.
-
CANCELLED
public static final CarePlanActivityStatus.ValueSet CANCELLED
CancelledThe planned care plan activity has been withdrawn.
-
STOPPED
public static final CarePlanActivityStatus.ValueSet STOPPED
StoppedThe planned care plan activity has been ended prior to completion after the activity was started.
-
UNKNOWN
public static final CarePlanActivityStatus.ValueSet UNKNOWN
UnknownThe current state of the care plan activity is not known. Note: This concept is not to be used for "other" - one of the listed statuses is presumed to apply, but the authoring/source system does not know which one.
-
ENTERED_IN_ERROR
public static final CarePlanActivityStatus.ValueSet ENTERED_IN_ERROR
Entered in ErrorCare plan activity was entered in error and voided.
-
-
Method Detail
-
values
public static CarePlanActivityStatus.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 (CarePlanActivityStatus.ValueSet c : CarePlanActivityStatus.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 CarePlanActivityStatus.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 CarePlanActivityStatus.ValueSet from(String value)
Factory method for creating CarePlanActivityStatus.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
-
-