Package org.hl7.fhir.r4.model
Enum Goal.GoalLifecycleStatus
- java.lang.Object
-
- java.lang.Enum<Goal.GoalLifecycleStatus>
-
- org.hl7.fhir.r4.model.Goal.GoalLifecycleStatus
-
- All Implemented Interfaces:
Serializable,Comparable<Goal.GoalLifecycleStatus>
- Enclosing class:
- Goal
public static enum Goal.GoalLifecycleStatus extends Enum<Goal.GoalLifecycleStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCEPTEDA proposed goal was accepted or acknowledged.ACTIVEThe goal is being sought actively.CANCELLEDThe goal has been abandoned.COMPLETEDThe goal is no longer being sought.ENTEREDINERRORThe goal was entered in error and voided.NULLadded to help the parsers with the generic typesONHOLDThe goal remains a long term objective but is no longer being actively pursued for a temporary period of time.PLANNEDA goal is planned for this patient.PROPOSEDA goal is proposed for this patient.REJECTEDA proposed goal was rejected.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Goal.GoalLifecycleStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static Goal.GoalLifecycleStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static Goal.GoalLifecycleStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROPOSED
public static final Goal.GoalLifecycleStatus PROPOSED
A goal is proposed for this patient.
-
PLANNED
public static final Goal.GoalLifecycleStatus PLANNED
A goal is planned for this patient.
-
ACCEPTED
public static final Goal.GoalLifecycleStatus ACCEPTED
A proposed goal was accepted or acknowledged.
-
ACTIVE
public static final Goal.GoalLifecycleStatus ACTIVE
The goal is being sought actively.
-
ONHOLD
public static final Goal.GoalLifecycleStatus ONHOLD
The goal remains a long term objective but is no longer being actively pursued for a temporary period of time.
-
COMPLETED
public static final Goal.GoalLifecycleStatus COMPLETED
The goal is no longer being sought.
-
CANCELLED
public static final Goal.GoalLifecycleStatus CANCELLED
The goal has been abandoned.
-
ENTEREDINERROR
public static final Goal.GoalLifecycleStatus ENTEREDINERROR
The goal was entered in error and voided.
-
REJECTED
public static final Goal.GoalLifecycleStatus REJECTED
A proposed goal was rejected.
-
NULL
public static final Goal.GoalLifecycleStatus NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static Goal.GoalLifecycleStatus[] 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 (Goal.GoalLifecycleStatus c : Goal.GoalLifecycleStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Goal.GoalLifecycleStatus 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 Goal.GoalLifecycleStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-