
Package org.hl7.fhir.dstu3.model
Enum CarePlan.CarePlanActivityStatus
- java.lang.Object
-
- java.lang.Enum<CarePlan.CarePlanActivityStatus>
-
- org.hl7.fhir.dstu3.model.CarePlan.CarePlanActivityStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<CarePlan.CarePlanActivityStatus>
- Enclosing class:
- CarePlan
public static enum CarePlan.CarePlanActivityStatus extends Enum<CarePlan.CarePlanActivityStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCELLED
The activities have been ended prior to completion (perhaps even before they were started).COMPLETED
The activities have been completed (more or less) as planned.INPROGRESS
Activity has been started but is not yet complete.NOTSTARTED
Activity is planned but no action has yet been taken.NULL
added to help the parsers with the generic typesONHOLD
Activity was started but has temporarily ceased with an expectation of resumption at a future time.SCHEDULED
Appointment or other booking has occurred but activity has not yet begun.UNKNOWN
The authoring system doesn't know the current state of the activity.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CarePlan.CarePlanActivityStatus
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static CarePlan.CarePlanActivityStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static CarePlan.CarePlanActivityStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOTSTARTED
public static final CarePlan.CarePlanActivityStatus NOTSTARTED
Activity is planned but no action has yet been taken.
-
SCHEDULED
public static final CarePlan.CarePlanActivityStatus SCHEDULED
Appointment or other booking has occurred but activity has not yet begun.
-
INPROGRESS
public static final CarePlan.CarePlanActivityStatus INPROGRESS
Activity has been started but is not yet complete.
-
ONHOLD
public static final CarePlan.CarePlanActivityStatus ONHOLD
Activity was started but has temporarily ceased with an expectation of resumption at a future time.
-
COMPLETED
public static final CarePlan.CarePlanActivityStatus COMPLETED
The activities have been completed (more or less) as planned.
-
CANCELLED
public static final CarePlan.CarePlanActivityStatus CANCELLED
The activities have been ended prior to completion (perhaps even before they were started).
-
UNKNOWN
public static final CarePlan.CarePlanActivityStatus UNKNOWN
The authoring system doesn't know the current state of the activity.
-
NULL
public static final CarePlan.CarePlanActivityStatus NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static CarePlan.CarePlanActivityStatus[] 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 (CarePlan.CarePlanActivityStatus c : CarePlan.CarePlanActivityStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CarePlan.CarePlanActivityStatus 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 CarePlan.CarePlanActivityStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-