Enum PrecheckBehavior
- java.lang.Object
-
- java.lang.Enum<PrecheckBehavior>
-
- org.hl7.fhir.dstu2016may.model.codesystems.PrecheckBehavior
-
- All Implemented Interfaces:
Serializable,Comparable<PrecheckBehavior>
public enum PrecheckBehavior extends Enum<PrecheckBehavior>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NOAn item with this behavior is one of the less frequent items included by the end user, for the particular context in which the item occurs.NULLadded to help the parsersYESAn item with this behavior is one of the most frequent items that is, or should be, included by an end user, for the particular context in which the item occurs.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PrecheckBehaviorfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static PrecheckBehaviorvalueOf(String name)Returns the enum constant of this type with the specified name.static PrecheckBehavior[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
YES
public static final PrecheckBehavior YES
An item with this behavior is one of the most frequent items that is, or should be, included by an end user, for the particular context in which the item occurs. The system displaying the item to the end user should consider "pre-checking" such an item as a convenience for the user
-
NO
public static final PrecheckBehavior NO
An item with this behavior is one of the less frequent items included by the end user, for the particular context in which the item occurs. The system displaying the items to the end user would typically not "pre-check" such an item
-
NULL
public static final PrecheckBehavior NULL
added to help the parsers
-
-
Method Detail
-
values
public static PrecheckBehavior[] 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 (PrecheckBehavior c : PrecheckBehavior.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrecheckBehavior 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 PrecheckBehavior fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-