Package org.hl7.fhir.r4b.model
Enum Enumerations.EvidenceVariableHandling
- java.lang.Object
-
- java.lang.Enum<Enumerations.EvidenceVariableHandling>
-
- org.hl7.fhir.r4b.model.Enumerations.EvidenceVariableHandling
-
- All Implemented Interfaces:
Serializable,Comparable<Enumerations.EvidenceVariableHandling>
- Enclosing class:
- Enumerations
public static enum Enumerations.EvidenceVariableHandling extends Enum<Enumerations.EvidenceVariableHandling>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTINUOUSA continuous variable is one for which, within the limits the variable ranges, any value is possible (from STATO http://purl.obolibrary.org/obo/STATO_0000251).DICHOTOMOUSA dichotomous variable is a categorical variable which is defined to have only 2 categories or possible values (from STATO http://purl.obolibrary.org/obo/STATO_0000090).NULLadded to help the parsersORDINALAn ordinal variable is a categorical variable where the discrete possible values are ordered or correspond to an implicit ranking (from STATO http://purl.obolibrary.org/obo/STATO_0000228).POLYCHOTOMOUSA polychotomous variable is a categorical variable which is defined to have minimally 2 categories or possible values.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Enumerations.EvidenceVariableHandlingfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static Enumerations.EvidenceVariableHandlingvalueOf(String name)Returns the enum constant of this type with the specified name.static Enumerations.EvidenceVariableHandling[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTINUOUS
public static final Enumerations.EvidenceVariableHandling CONTINUOUS
A continuous variable is one for which, within the limits the variable ranges, any value is possible (from STATO http://purl.obolibrary.org/obo/STATO_0000251).
-
DICHOTOMOUS
public static final Enumerations.EvidenceVariableHandling DICHOTOMOUS
A dichotomous variable is a categorical variable which is defined to have only 2 categories or possible values (from STATO http://purl.obolibrary.org/obo/STATO_0000090).
-
ORDINAL
public static final Enumerations.EvidenceVariableHandling ORDINAL
An ordinal variable is a categorical variable where the discrete possible values are ordered or correspond to an implicit ranking (from STATO http://purl.obolibrary.org/obo/STATO_0000228).
-
POLYCHOTOMOUS
public static final Enumerations.EvidenceVariableHandling POLYCHOTOMOUS
A polychotomous variable is a categorical variable which is defined to have minimally 2 categories or possible values. (from STATO http://purl.obolibrary.org/obo/STATO_0000087). Suggestion to limit code use to situations when neither dichotomous nor ordinal variables apply.
-
NULL
public static final Enumerations.EvidenceVariableHandling NULL
added to help the parsers
-
-
Method Detail
-
values
public static Enumerations.EvidenceVariableHandling[] 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 (Enumerations.EvidenceVariableHandling c : Enumerations.EvidenceVariableHandling.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Enumerations.EvidenceVariableHandling 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 Enumerations.EvidenceVariableHandling fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-