Enum GoalStatus
- java.lang.Object
-
- java.lang.Enum<GoalStatus>
-
- org.hl7.fhir.dstu3.model.codesystems.GoalStatus
-
- All Implemented Interfaces:
Serializable,Comparable<GoalStatus>
public enum GoalStatus extends Enum<GoalStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCEPTEDA proposed goal was accepted or acknowledgedACHIEVEDThe goal has been met and no further action is neededAHEADOFTARGETThe goal is ahead of the planned timelinesBEHINDTARGETThe goal is behind the planned timelinesCANCELLEDThe previously accepted goal is no longer being soughtENTEREDINERRORThe goal was entered in error and voided.INPROGRESSThe goal is being sought but has not yet been reached.NULLadded to help the parsersONHOLDThe goal remains a long term objective but is no longer being actively pursued for a temporary period of time.ONTARGETThe goal is on schedule for the planned timelinesPLANNEDA goal is planned for this patientPROPOSEDA goal is proposed for this patientREJECTEDA proposed goal was rejectedSUSTAININGThe goal has been met, but ongoing activity is needed to sustain the goal objective
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GoalStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static GoalStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static GoalStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROPOSED
public static final GoalStatus PROPOSED
A goal is proposed for this patient
-
ACCEPTED
public static final GoalStatus ACCEPTED
A proposed goal was accepted or acknowledged
-
PLANNED
public static final GoalStatus PLANNED
A goal is planned for this patient
-
INPROGRESS
public static final GoalStatus INPROGRESS
The goal is being sought but has not yet been reached. (Also applies if goal was reached in the past but there has been regression and goal is being sought again)
-
ONTARGET
public static final GoalStatus ONTARGET
The goal is on schedule for the planned timelines
-
AHEADOFTARGET
public static final GoalStatus AHEADOFTARGET
The goal is ahead of the planned timelines
-
BEHINDTARGET
public static final GoalStatus BEHINDTARGET
The goal is behind the planned timelines
-
SUSTAINING
public static final GoalStatus SUSTAINING
The goal has been met, but ongoing activity is needed to sustain the goal objective
-
ACHIEVED
public static final GoalStatus ACHIEVED
The goal has been met and no further action is needed
-
ONHOLD
public static final GoalStatus ONHOLD
The goal remains a long term objective but is no longer being actively pursued for a temporary period of time.
-
CANCELLED
public static final GoalStatus CANCELLED
The previously accepted goal is no longer being sought
-
ENTEREDINERROR
public static final GoalStatus ENTEREDINERROR
The goal was entered in error and voided.
-
REJECTED
public static final GoalStatus REJECTED
A proposed goal was rejected
-
NULL
public static final GoalStatus NULL
added to help the parsers
-
-
Method Detail
-
values
public static GoalStatus[] 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 (GoalStatus c : GoalStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GoalStatus 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 GoalStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-