Enum GoalAcceptanceStatus
- java.lang.Object
-
- java.lang.Enum<GoalAcceptanceStatus>
-
- org.hl7.fhir.r4.model.codesystems.GoalAcceptanceStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<GoalAcceptanceStatus>
public enum GoalAcceptanceStatus extends Enum<GoalAcceptanceStatus>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GoalAcceptanceStatus
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static GoalAcceptanceStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static GoalAcceptanceStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AGREE
public static final GoalAcceptanceStatus AGREE
Stakeholder supports pursuit of the goal.
-
DISAGREE
public static final GoalAcceptanceStatus DISAGREE
Stakeholder is not in support of the pursuit of the goal.
-
PENDING
public static final GoalAcceptanceStatus PENDING
Stakeholder has not yet made a decision on whether they support the goal.
-
NULL
public static final GoalAcceptanceStatus NULL
added to help the parsers
-
-
Method Detail
-
values
public static GoalAcceptanceStatus[] 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 (GoalAcceptanceStatus c : GoalAcceptanceStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GoalAcceptanceStatus 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 GoalAcceptanceStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-