Package org.hl7.fhir.dstu2.model
Enum Enumerations.DataAbsentReason
- java.lang.Object
-
- java.lang.Enum<Enumerations.DataAbsentReason>
-
- org.hl7.fhir.dstu2.model.Enumerations.DataAbsentReason
-
- All Implemented Interfaces:
Serializable,Comparable<Enumerations.DataAbsentReason>
- Enclosing class:
- Enumerations
public static enum Enumerations.DataAbsentReason extends Enum<Enumerations.DataAbsentReason>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASKEDThe source human does not know the value.ASTEXTThe content of the data is represented in the resource narrative.ERRORSome system or workflow process error means that the information is not available.MASKEDThe information is not available due to security, privacy or related reasons.NANNaN, standing for not a number, is a numeric data type value representing an undefined or unrepresentable value.NOTASKEDThe workflow didn't lead to this value being known.NULLadded to help the parsersTEMPThere is reason to expect (from the workflow) that the value may become known.UNKNOWNThe value is not known.UNSUPPORTEDThe 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 Enumerations.DataAbsentReasonfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static Enumerations.DataAbsentReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static Enumerations.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 Enumerations.DataAbsentReason UNKNOWN
The value is not known.
-
ASKED
public static final Enumerations.DataAbsentReason ASKED
The source human does not know the value.
-
TEMP
public static final Enumerations.DataAbsentReason TEMP
There is reason to expect (from the workflow) that the value may become known.
-
NOTASKED
public static final Enumerations.DataAbsentReason NOTASKED
The workflow didn't lead to this value being known.
-
MASKED
public static final Enumerations.DataAbsentReason MASKED
The information is not available due to security, privacy or related reasons.
-
UNSUPPORTED
public static final Enumerations.DataAbsentReason UNSUPPORTED
The source system wasn't capable of supporting this element.
-
ASTEXT
public static final Enumerations.DataAbsentReason ASTEXT
The content of the data is represented in the resource narrative.
-
ERROR
public static final Enumerations.DataAbsentReason ERROR
Some system or workflow process error means that the information is not available.
-
NAN
public static final Enumerations.DataAbsentReason NAN
NaN, standing for not a number, is a numeric data type value representing an undefined or unrepresentable value.
-
NULL
public static final Enumerations.DataAbsentReason NULL
added to help the parsers
-
-
Method Detail
-
values
public static Enumerations.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 (Enumerations.DataAbsentReason c : Enumerations.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 Enumerations.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 Enumerations.DataAbsentReason fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-