Package ca.uhn.fhir.model.dstu2.valueset
Enum GoalStatusEnum
- java.lang.Object
-
- java.lang.Enum<GoalStatusEnum>
-
- ca.uhn.fhir.model.dstu2.valueset.GoalStatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<GoalStatusEnum>
public enum GoalStatusEnum extends Enum<GoalStatusEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCEPTEDDisplay: Accepted
Code Value: accepted A proposed goal was acceptedACHIEVEDDisplay: Achieved
Code Value: achieved The goal has been met and no further action is neededCANCELLEDDisplay: Cancelled
Code Value: cancelled The goal is no longer being soughtIN_PROGRESSDisplay: In Progress
Code Value: in-progress The goal is being sought but has not yet been reached.ON_HOLDDisplay: On Hold
Code Value: on-hold The goal remains a long term objective but is no longer being actively pursued for a temporary period of time.PLANNEDDisplay: Planned
Code Value: planned A goal is planned for this patientPROPOSEDDisplay: Proposed
Code Value: proposed A goal is proposed for this patientREJECTEDDisplay: Rejected
Code Value: rejected A proposed goal was rejectedSUSTAININGDisplay: Sustaining
Code Value: sustaining The goal has been met, but ongoing activity is needed to sustain the goal objective
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<GoalStatusEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: GoalStatus
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GoalStatusEnumforCode(String theCode)Returns the enumerated value associated with this codeStringgetCode()Returns the code associated with this enumerated valueStringgetSystem()Returns the code system associated with this enumerated valuestatic GoalStatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static GoalStatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROPOSED
public static final GoalStatusEnum PROPOSED
Display: Proposed
Code Value: proposed A goal is proposed for this patient
-
PLANNED
public static final GoalStatusEnum PLANNED
Display: Planned
Code Value: planned A goal is planned for this patient
-
ACCEPTED
public static final GoalStatusEnum ACCEPTED
Display: Accepted
Code Value: accepted A proposed goal was accepted
-
REJECTED
public static final GoalStatusEnum REJECTED
Display: Rejected
Code Value: rejected A proposed goal was rejected
-
IN_PROGRESS
public static final GoalStatusEnum IN_PROGRESS
Display: In Progress
Code Value: in-progress 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)
-
ACHIEVED
public static final GoalStatusEnum ACHIEVED
Display: Achieved
Code Value: achieved The goal has been met and no further action is needed
-
SUSTAINING
public static final GoalStatusEnum SUSTAINING
Display: Sustaining
Code Value: sustaining The goal has been met, but ongoing activity is needed to sustain the goal objective
-
ON_HOLD
public static final GoalStatusEnum ON_HOLD
Display: On Hold
Code Value: on-hold The goal remains a long term objective but is no longer being actively pursued for a temporary period of time.
-
CANCELLED
public static final GoalStatusEnum CANCELLED
Display: Cancelled
Code Value: cancelled The goal is no longer being sought
-
-
Field Detail
-
VALUESET_IDENTIFIER
public static final String VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
- Constant Field Values
-
VALUESET_NAME
public static final String VALUESET_NAME
Name for this Value Set: GoalStatus- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<GoalStatusEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static GoalStatusEnum[] 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 (GoalStatusEnum c : GoalStatusEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GoalStatusEnum 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
-
forCode
public static GoalStatusEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-