Enum EffectEstimateType
- java.lang.Object
-
- java.lang.Enum<EffectEstimateType>
-
- org.hl7.fhir.r4.model.codesystems.EffectEstimateType
-
- All Implemented Interfaces:
Serializable,Comparable<EffectEstimateType>
public enum EffectEstimateType extends Enum<EffectEstimateType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSOLUTEARDabsolute risk difference (a type of absolute effect estimate).ABSOLUTEMEANDIFFmean difference (a type of absolute effect estimate).ABSOLUTEMEDIANDIFFmedian difference (a type of absolute effect estimate).ABSOLUTESMDstandardized mean difference (a type of absolute effect estimate).NULLadded to help the parsersRELATIVEHRhazard ratio (a type of relative effect estimate).RELATIVEORodds ratio (a type of relative effect estimate).RELATIVERRrelative risk (a type of relative effect estimate).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EffectEstimateTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static EffectEstimateTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EffectEstimateType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RELATIVERR
public static final EffectEstimateType RELATIVERR
relative risk (a type of relative effect estimate).
-
RELATIVEOR
public static final EffectEstimateType RELATIVEOR
odds ratio (a type of relative effect estimate).
-
RELATIVEHR
public static final EffectEstimateType RELATIVEHR
hazard ratio (a type of relative effect estimate).
-
ABSOLUTEARD
public static final EffectEstimateType ABSOLUTEARD
absolute risk difference (a type of absolute effect estimate).
-
ABSOLUTEMEANDIFF
public static final EffectEstimateType ABSOLUTEMEANDIFF
mean difference (a type of absolute effect estimate).
-
ABSOLUTESMD
public static final EffectEstimateType ABSOLUTESMD
standardized mean difference (a type of absolute effect estimate).
-
ABSOLUTEMEDIANDIFF
public static final EffectEstimateType ABSOLUTEMEDIANDIFF
median difference (a type of absolute effect estimate).
-
NULL
public static final EffectEstimateType NULL
added to help the parsers
-
-
Method Detail
-
values
public static EffectEstimateType[] 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 (EffectEstimateType c : EffectEstimateType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EffectEstimateType 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 EffectEstimateType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-