Enum DefinitionResourceTypes
- java.lang.Object
-
- java.lang.Enum<DefinitionResourceTypes>
-
- org.hl7.fhir.r4.model.codesystems.DefinitionResourceTypes
-
- All Implemented Interfaces:
Serializable,Comparable<DefinitionResourceTypes>
public enum DefinitionResourceTypes extends Enum<DefinitionResourceTypes>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVITYDEFINITIONThis resource allows for the definition of some activity to be performed, independent of a particular patient, practitioner, or other performance context.EVENTDEFINITIONThe EventDefinition resource provides a reusable description of when a particular event can occur.MEASUREThe Measure resource provides the definition of a quality measure.NULLadded to help the parsersOPERATIONDEFINITIONA formal computable definition of an operation (on the RESTful interface) or a named query (using the search interaction).PLANDEFINITIONThis resource allows for the definition of various types of plans as a sharable, consumable, and executable artifact.QUESTIONNAIREA structured set of questions intended to guide the collection of answers from end-users.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DefinitionResourceTypesfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static DefinitionResourceTypesvalueOf(String name)Returns the enum constant of this type with the specified name.static DefinitionResourceTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVITYDEFINITION
public static final DefinitionResourceTypes ACTIVITYDEFINITION
This resource allows for the definition of some activity to be performed, independent of a particular patient, practitioner, or other performance context.
-
EVENTDEFINITION
public static final DefinitionResourceTypes EVENTDEFINITION
The EventDefinition resource provides a reusable description of when a particular event can occur.
-
MEASURE
public static final DefinitionResourceTypes MEASURE
The Measure resource provides the definition of a quality measure.
-
OPERATIONDEFINITION
public static final DefinitionResourceTypes OPERATIONDEFINITION
A formal computable definition of an operation (on the RESTful interface) or a named query (using the search interaction).
-
PLANDEFINITION
public static final DefinitionResourceTypes PLANDEFINITION
This resource allows for the definition of various types of plans as a sharable, consumable, and executable artifact. The resource is general enough to support the description of a broad range of clinical artifacts such as clinical decision support rules, order sets and protocols.
-
QUESTIONNAIRE
public static final DefinitionResourceTypes QUESTIONNAIRE
A structured set of questions intended to guide the collection of answers from end-users. Questionnaires provide detailed control over order, presentation, phraseology and grouping to allow coherent, consistent data collection.
-
NULL
public static final DefinitionResourceTypes NULL
added to help the parsers
-
-
Method Detail
-
values
public static DefinitionResourceTypes[] 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 (DefinitionResourceTypes c : DefinitionResourceTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DefinitionResourceTypes 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 DefinitionResourceTypes fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-