Enum KnowledgeResourceTypes
- java.lang.Object
-
- java.lang.Enum<KnowledgeResourceTypes>
-
- org.hl7.fhir.r4.model.codesystems.KnowledgeResourceTypes
-
- All Implemented Interfaces:
Serializable,Comparable<KnowledgeResourceTypes>
public enum KnowledgeResourceTypes extends Enum<KnowledgeResourceTypes>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVITYDEFINITIONThe definition of a specific activity to be taken, independent of any particular patient or context.CODESYSTEMA set of codes drawn from one or more code systems.CONCEPTMAPA map from one set of concepts to one or more other concepts.LIBRARYRepresents a library of quality improvement components.MEASUREA quality measure definition.NULLadded to help the parsersPLANDEFINITIONThe definition of a plan for a series of actions, independent of any specific patient or context.STRUCTUREDEFINITIONStructural Definition.STRUCTUREMAPA Map of relationships between 2 structures that can be used to transform data.VALUESETA set of codes drawn from one or more code systems.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static KnowledgeResourceTypesfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static KnowledgeResourceTypesvalueOf(String name)Returns the enum constant of this type with the specified name.static KnowledgeResourceTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVITYDEFINITION
public static final KnowledgeResourceTypes ACTIVITYDEFINITION
The definition of a specific activity to be taken, independent of any particular patient or context.
-
CODESYSTEM
public static final KnowledgeResourceTypes CODESYSTEM
A set of codes drawn from one or more code systems.
-
CONCEPTMAP
public static final KnowledgeResourceTypes CONCEPTMAP
A map from one set of concepts to one or more other concepts.
-
LIBRARY
public static final KnowledgeResourceTypes LIBRARY
Represents a library of quality improvement components.
-
MEASURE
public static final KnowledgeResourceTypes MEASURE
A quality measure definition.
-
PLANDEFINITION
public static final KnowledgeResourceTypes PLANDEFINITION
The definition of a plan for a series of actions, independent of any specific patient or context.
-
STRUCTUREDEFINITION
public static final KnowledgeResourceTypes STRUCTUREDEFINITION
Structural Definition.
-
STRUCTUREMAP
public static final KnowledgeResourceTypes STRUCTUREMAP
A Map of relationships between 2 structures that can be used to transform data.
-
VALUESET
public static final KnowledgeResourceTypes VALUESET
A set of codes drawn from one or more code systems.
-
NULL
public static final KnowledgeResourceTypes NULL
added to help the parsers
-
-
Method Detail
-
values
public static KnowledgeResourceTypes[] 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 (KnowledgeResourceTypes c : KnowledgeResourceTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KnowledgeResourceTypes 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 KnowledgeResourceTypes fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-