Package com.ibm.fhir.model.type.code
Enum GroupMeasure.ValueSet
- java.lang.Object
-
- java.lang.Enum<GroupMeasure.ValueSet>
-
- com.ibm.fhir.model.type.code.GroupMeasure.ValueSet
-
- All Implemented Interfaces:
Serializable,Comparable<GroupMeasure.ValueSet>
- Enclosing class:
- GroupMeasure
public static enum GroupMeasure.ValueSet extends Enum<GroupMeasure.ValueSet>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MEANMeanMEAN_OF_MEANMean of Study MeansMEAN_OF_MEDIANMean of Study MedinsMEDIANMedianMEDIAN_OF_MEANMedian of Study MeansMEDIAN_OF_MEDIANMedian of Study Medians
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GroupMeasure.ValueSetfrom(String value)Factory method for creating GroupMeasure.ValueSet values from a passed string value.Stringvalue()static GroupMeasure.ValueSetvalueOf(String name)Returns the enum constant of this type with the specified name.static GroupMeasure.ValueSet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MEAN
public static final GroupMeasure.ValueSet MEAN
MeanAggregated using Mean of participant values.
-
MEDIAN
public static final GroupMeasure.ValueSet MEDIAN
MedianAggregated using Median of participant values.
-
MEAN_OF_MEAN
public static final GroupMeasure.ValueSet MEAN_OF_MEAN
Mean of Study MeansAggregated using Mean of study mean values.
-
MEAN_OF_MEDIAN
public static final GroupMeasure.ValueSet MEAN_OF_MEDIAN
Mean of Study MedinsAggregated using Mean of study median values.
-
MEDIAN_OF_MEAN
public static final GroupMeasure.ValueSet MEDIAN_OF_MEAN
Median of Study MeansAggregated using Median of study mean values.
-
MEDIAN_OF_MEDIAN
public static final GroupMeasure.ValueSet MEDIAN_OF_MEDIAN
Median of Study MediansAggregated using Median of study median values.
-
-
Method Detail
-
values
public static GroupMeasure.ValueSet[] 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 (GroupMeasure.ValueSet c : GroupMeasure.ValueSet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GroupMeasure.ValueSet 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
-
value
public String value()
- Returns:
- The java.lang.String value of the code represented by this enum
-
from
public static GroupMeasure.ValueSet from(String value)
Factory method for creating GroupMeasure.ValueSet values from a passed string value.- Parameters:
value- A string that matches one of the allowed code values- Throws:
IllegalArgumentException- If the passed string cannot be parsed into an allowed code value
-
-