Package ca.uhn.fhir.model.dstu2.valueset
Enum DataElementStringencyEnum
java.lang.Object
java.lang.Enum<DataElementStringencyEnum>
ca.uhn.fhir.model.dstu2.valueset.DataElementStringencyEnum
- All Implemented Interfaces:
Serializable
,Comparable<DataElementStringencyEnum>
-
Enum Constant Summary
Enum ConstantDescriptionDisplay: Comparable
Code Value: comparable The data element is sufficiently well-constrained that multiple pieces of data captured according to the constraints of the data element will be comparable (though in some cases, a degree of automated conversion/normalization may be required).Display: Convertable
Code Value: convertable The data element allows multiple units of measure that are convertable between each other (e.g.Display: Equivalent
Code Value: equivalent The data element allows multiple units of measure having equivalent meaning; e.g.Display: Flexible
Code Value: flexible The data element is unconstrained in units, choice of data types and/or choice of vocabulary such that automated comparison of data captured using the data element is not possible.Display: Fully Specified
Code Value: fully-specified The data element is fully specified down to a single value set, single unit of measure, single data type, etc.Display: Scaleable
Code Value: scaleable A convertable data element where unit conversions are different only by a power of 10; e.g. -
Field Summary
Modifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder
<DataElementStringencyEnum> Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set:static final String
Name for this Value Set: DataElementStringency -
Method Summary
Modifier and TypeMethodDescriptionstatic DataElementStringencyEnum
Returns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valuestatic DataElementStringencyEnum
Returns the enum constant of this type with the specified name.static DataElementStringencyEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
COMPARABLE
Display: Comparable
Code Value: comparable The data element is sufficiently well-constrained that multiple pieces of data captured according to the constraints of the data element will be comparable (though in some cases, a degree of automated conversion/normalization may be required). -
FULLY_SPECIFIED
Display: Fully Specified
Code Value: fully-specified The data element is fully specified down to a single value set, single unit of measure, single data type, etc. Multiple pieces of data associated with this data element are fully comparable. -
EQUIVALENT
Display: Equivalent
Code Value: equivalent The data element allows multiple units of measure having equivalent meaning; e.g. "cc" (cubic centimeter) and "mL" (milliliter). -
CONVERTABLE
Display: Convertable
Code Value: convertable The data element allows multiple units of measure that are convertable between each other (e.g. inches and centimeters) and/or allows data to be captured in multiple value sets for which a known mapping exists allowing conversion of meaning. -
SCALEABLE
Display: Scaleable
Code Value: scaleable A convertable data element where unit conversions are different only by a power of 10; e.g. g, mg, kg. -
FLEXIBLE
Display: Flexible
Code Value: flexible The data element is unconstrained in units, choice of data types and/or choice of vocabulary such that automated comparison of data captured using the data element is not possible.
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
-
VALUESET_NAME
Name for this Value Set: DataElementStringency- See Also:
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<DataElementStringencyEnum> VALUESET_BINDERConverts codes to their respective enumerated values
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getCode
Returns the code associated with this enumerated value -
getSystem
Returns the code system associated with this enumerated value -
forCode
Returns the enumerated value associated with this code
-