Package com.ibm.fhir.model.type.code
Enum GoalLifecycleStatus.ValueSet
- java.lang.Object
-
- java.lang.Enum<GoalLifecycleStatus.ValueSet>
-
- com.ibm.fhir.model.type.code.GoalLifecycleStatus.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<GoalLifecycleStatus.ValueSet>
- Enclosing class:
- GoalLifecycleStatus
public static enum GoalLifecycleStatus.ValueSet extends Enum<GoalLifecycleStatus.ValueSet>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GoalLifecycleStatus.ValueSetfrom(String value)Factory method for creating GoalLifecycleStatus.ValueSet values from a passed string value.Stringvalue()static GoalLifecycleStatus.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static GoalLifecycleStatus.ValueSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROPOSED
public static final GoalLifecycleStatus.ValueSet PROPOSED
ProposedA goal is proposed for this patient.
-
PLANNED
public static final GoalLifecycleStatus.ValueSet PLANNED
PlannedA goal is planned for this patient.
-
ACCEPTED
public static final GoalLifecycleStatus.ValueSet ACCEPTED
AcceptedA proposed goal was accepted or acknowledged.
-
ACTIVE
public static final GoalLifecycleStatus.ValueSet ACTIVE
ActiveThe goal is being sought actively.
-
ON_HOLD
public static final GoalLifecycleStatus.ValueSet ON_HOLD
On HoldThe goal remains a long term objective but is no longer being actively pursued for a temporary period of time.
-
COMPLETED
public static final GoalLifecycleStatus.ValueSet COMPLETED
CompletedThe goal is no longer being sought.
-
CANCELLED
public static final GoalLifecycleStatus.ValueSet CANCELLED
CancelledThe goal has been abandoned.
-
ENTERED_IN_ERROR
public static final GoalLifecycleStatus.ValueSet ENTERED_IN_ERROR
Entered in ErrorThe goal was entered in error and voided.
-
REJECTED
public static final GoalLifecycleStatus.ValueSet REJECTED
RejectedA proposed goal was rejected.
-
-
Method Detail
-
values
public static GoalLifecycleStatus.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 (GoalLifecycleStatus.ValueSet c : GoalLifecycleStatus.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 GoalLifecycleStatus.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 GoalLifecycleStatus.ValueSet from(String value)
Factory method for creating GoalLifecycleStatus.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
-
-