Enum DataAbsentReason
- java.lang.Object
-
- java.lang.Enum<DataAbsentReason>
-
- org.hl7.fhir.r4.model.codesystems.DataAbsentReason
-
- All Implemented Interfaces:
Serializable
,Comparable<DataAbsentReason>
public enum DataAbsentReason extends Enum<DataAbsentReason>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASKEDDECLINED
The source was asked but declined to answer.ASKEDUNKNOWN
The source was asked but does not know the value.ASTEXT
The content of the data is represented in the resource narrative.ERROR
Some system or workflow process error means that the information is not available.MASKED
The information is not available due to security, privacy or related reasons.NEGATIVEINFINITY
The numeric value is excessively low and unrepresentable due to a floating point processing error.NOTANUMBER
The numeric value is undefined or unrepresentable due to a floating point processing error.NOTAPPLICABLE
There is no proper value for this element (e.g.NOTASKED
The workflow didn't lead to this value being known.NOTPERFORMED
The value is not available because the observation procedure (test, etc.) was not performed.NOTPERMITTED
The value is not permitted in this context (e.g.NULL
added to help the parsersPOSITIVEINFINITY
The numeric value is excessively high and unrepresentable due to a floating point processing error.TEMPUNKNOWN
There is reason to expect (from the workflow) that the value may become known.UNKNOWN
The value is expected to exist but is not known.UNSUPPORTED
The source system wasn't capable of supporting this element.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataAbsentReason
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static DataAbsentReason
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataAbsentReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final DataAbsentReason UNKNOWN
The value is expected to exist but is not known.
-
ASKEDUNKNOWN
public static final DataAbsentReason ASKEDUNKNOWN
The source was asked but does not know the value.
-
TEMPUNKNOWN
public static final DataAbsentReason TEMPUNKNOWN
There is reason to expect (from the workflow) that the value may become known.
-
NOTASKED
public static final DataAbsentReason NOTASKED
The workflow didn't lead to this value being known.
-
ASKEDDECLINED
public static final DataAbsentReason ASKEDDECLINED
The source was asked but declined to answer.
-
MASKED
public static final DataAbsentReason MASKED
The information is not available due to security, privacy or related reasons.
-
NOTAPPLICABLE
public static final DataAbsentReason NOTAPPLICABLE
There is no proper value for this element (e.g. last menstrual period for a male).
-
UNSUPPORTED
public static final DataAbsentReason UNSUPPORTED
The source system wasn't capable of supporting this element.
-
ASTEXT
public static final DataAbsentReason ASTEXT
The content of the data is represented in the resource narrative.
-
ERROR
public static final DataAbsentReason ERROR
Some system or workflow process error means that the information is not available.
-
NOTANUMBER
public static final DataAbsentReason NOTANUMBER
The numeric value is undefined or unrepresentable due to a floating point processing error.
-
NEGATIVEINFINITY
public static final DataAbsentReason NEGATIVEINFINITY
The numeric value is excessively low and unrepresentable due to a floating point processing error.
-
POSITIVEINFINITY
public static final DataAbsentReason POSITIVEINFINITY
The numeric value is excessively high and unrepresentable due to a floating point processing error.
-
NOTPERFORMED
public static final DataAbsentReason NOTPERFORMED
The value is not available because the observation procedure (test, etc.) was not performed.
-
NOTPERMITTED
public static final DataAbsentReason NOTPERMITTED
The value is not permitted in this context (e.g. due to profiles, or the base data types).
-
NULL
public static final DataAbsentReason NULL
added to help the parsers
-
-
Method Detail
-
values
public static DataAbsentReason[] 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 (DataAbsentReason c : DataAbsentReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataAbsentReason 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 DataAbsentReason fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-