Package com.ibm.fhir.model.type.code
Enum ActionPrecheckBehavior.ValueSet
- java.lang.Object
-
- java.lang.Enum<ActionPrecheckBehavior.ValueSet>
-
- com.ibm.fhir.model.type.code.ActionPrecheckBehavior.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<ActionPrecheckBehavior.ValueSet>
- Enclosing class:
- ActionPrecheckBehavior
public static enum ActionPrecheckBehavior.ValueSet extends Enum<ActionPrecheckBehavior.ValueSet>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ActionPrecheckBehavior.ValueSetfrom(String value)Factory method for creating ActionPrecheckBehavior.ValueSet values from a passed string value.Stringvalue()static ActionPrecheckBehavior.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static ActionPrecheckBehavior.ValueSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
YES
public static final ActionPrecheckBehavior.ValueSet YES
YesAn action with this behavior is one of the most frequent action that is, or should be, included by an end user, for the particular context in which the action occurs. The system displaying the action to the end user should consider "pre-checking" such an action as a convenience for the user.
-
NO
public static final ActionPrecheckBehavior.ValueSet NO
NoAn action with this behavior is one of the less frequent actions included by the end user, for the particular context in which the action occurs. The system displaying the actions to the end user would typically not "pre-check" such an action.
-
-
Method Detail
-
values
public static ActionPrecheckBehavior.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 (ActionPrecheckBehavior.ValueSet c : ActionPrecheckBehavior.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 ActionPrecheckBehavior.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 ActionPrecheckBehavior.ValueSet from(String value)
Factory method for creating ActionPrecheckBehavior.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
-
-