Enum MeasureScoring
- java.lang.Object
-
- java.lang.Enum<MeasureScoring>
-
- org.hl7.fhir.r4.model.codesystems.MeasureScoring
-
- All Implemented Interfaces:
Serializable,Comparable<MeasureScoring>
public enum MeasureScoring extends Enum<MeasureScoring>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COHORTThe measure is a cohort definition.CONTINUOUSVARIABLEThe score is defined by a calculation of some quantity.NULLadded to help the parsersPROPORTIONThe measure score is defined using a proportion.RATIOThe measure score is defined using a ratio.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MeasureScoringfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static MeasureScoringvalueOf(String name)Returns the enum constant of this type with the specified name.static MeasureScoring[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROPORTION
public static final MeasureScoring PROPORTION
The measure score is defined using a proportion.
-
RATIO
public static final MeasureScoring RATIO
The measure score is defined using a ratio.
-
CONTINUOUSVARIABLE
public static final MeasureScoring CONTINUOUSVARIABLE
The score is defined by a calculation of some quantity.
-
COHORT
public static final MeasureScoring COHORT
The measure is a cohort definition.
-
NULL
public static final MeasureScoring NULL
added to help the parsers
-
-
Method Detail
-
values
public static MeasureScoring[] 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 (MeasureScoring c : MeasureScoring.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MeasureScoring 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 MeasureScoring fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-