Package org.hl7.fhir.dstu2016may.model
Enum Measure.MeasureScoring
- java.lang.Object
-
- java.lang.Enum<Measure.MeasureScoring>
-
- org.hl7.fhir.dstu2016may.model.Measure.MeasureScoring
-
- All Implemented Interfaces:
Serializable,Comparable<Measure.MeasureScoring>
- Enclosing class:
- Measure
public static enum Measure.MeasureScoring extends Enum<Measure.MeasureScoring>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COHORTThe measure is a cohort definitionCONTINUOUSVARIABLEThe score is defined by a calculation of some quantityNULLadded to help the parsersPROPORTIONThe measure score is defined using a proportionRATIOThe measure score is defined using a ratio
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Measure.MeasureScoringfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static Measure.MeasureScoringvalueOf(String name)Returns the enum constant of this type with the specified name.static Measure.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 Measure.MeasureScoring PROPORTION
The measure score is defined using a proportion
-
RATIO
public static final Measure.MeasureScoring RATIO
The measure score is defined using a ratio
-
CONTINUOUSVARIABLE
public static final Measure.MeasureScoring CONTINUOUSVARIABLE
The score is defined by a calculation of some quantity
-
COHORT
public static final Measure.MeasureScoring COHORT
The measure is a cohort definition
-
NULL
public static final Measure.MeasureScoring NULL
added to help the parsers
-
-
Method Detail
-
values
public static Measure.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 (Measure.MeasureScoring c : Measure.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 Measure.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 Measure.MeasureScoring fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-