Enum PlanDefinitionType
- java.lang.Object
-
- java.lang.Enum<PlanDefinitionType>
-
- org.hl7.fhir.r4.model.codesystems.PlanDefinitionType
-
- All Implemented Interfaces:
Serializable,Comparable<PlanDefinitionType>
public enum PlanDefinitionType extends Enum<PlanDefinitionType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLINICALPROTOCOLDefines a desired/typical sequence of clinical activities including preconditions, triggers and temporal relationships.ECARULEA decision support rule of the form [on Event] if Condition then Action.NULLadded to help the parsersORDERSETA pre-defined and approved group of orders related to a particular clinical condition (e.g.WORKFLOWDEFINITIONDefines the steps for a group of one or more systems in an event flow process along with the step constraints, sequence, pre-conditions and decision points to complete a particular objective.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PlanDefinitionTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static PlanDefinitionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static PlanDefinitionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ORDERSET
public static final PlanDefinitionType ORDERSET
A pre-defined and approved group of orders related to a particular clinical condition (e.g. hypertension treatment and monitoring) or stage of care (e.g. hospital admission to Coronary Care Unit). An order set is used as a checklist for the clinician when managing a patient with a specific condition. It is a structured collection of orders relevant to that condition and presented to the clinician in a computerized provider order entry (CPOE) system.
-
CLINICALPROTOCOL
public static final PlanDefinitionType CLINICALPROTOCOL
Defines a desired/typical sequence of clinical activities including preconditions, triggers and temporal relationships.
-
ECARULE
public static final PlanDefinitionType ECARULE
A decision support rule of the form [on Event] if Condition then Action. It is intended to be a shareable, computable definition of actions that should be taken whenever some condition is met in response to a particular event or events.
-
WORKFLOWDEFINITION
public static final PlanDefinitionType WORKFLOWDEFINITION
Defines the steps for a group of one or more systems in an event flow process along with the step constraints, sequence, pre-conditions and decision points to complete a particular objective.
-
NULL
public static final PlanDefinitionType NULL
added to help the parsers
-
-
Method Detail
-
values
public static PlanDefinitionType[] 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 (PlanDefinitionType c : PlanDefinitionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PlanDefinitionType 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 PlanDefinitionType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-