
Package org.hl7.fhir.dstu3.model
Enum DiagnosticReport.DiagnosticReportStatus
- java.lang.Object
-
- java.lang.Enum<DiagnosticReport.DiagnosticReportStatus>
-
- org.hl7.fhir.dstu3.model.DiagnosticReport.DiagnosticReportStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<DiagnosticReport.DiagnosticReportStatus>
- Enclosing class:
- DiagnosticReport
public static enum DiagnosticReport.DiagnosticReportStatus extends Enum<DiagnosticReport.DiagnosticReportStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AMENDED
Subsequent to being final, the report has been modified.APPENDED
Subsequent to being final, the report has been modified by adding new content.CANCELLED
The report is unavailable because the measurement was not started or not completed (also sometimes called "aborted").CORRECTED
Subsequent to being final, the report has been modified to correct an error in the report or referenced results.ENTEREDINERROR
The report has been withdrawn following a previous final release.FINAL
The report is complete and verified by an authorized person.NULL
added to help the parsers with the generic typesPARTIAL
This is a partial (e.g.PRELIMINARY
Verified early results are available, but not all results are final.REGISTERED
The existence of the report is registered, but there is nothing yet available.UNKNOWN
The authoring system does not know which of the status values currently applies for this request.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DiagnosticReport.DiagnosticReportStatus
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static DiagnosticReport.DiagnosticReportStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static DiagnosticReport.DiagnosticReportStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REGISTERED
public static final DiagnosticReport.DiagnosticReportStatus REGISTERED
The existence of the report is registered, but there is nothing yet available.
-
PARTIAL
public static final DiagnosticReport.DiagnosticReportStatus PARTIAL
This is a partial (e.g. initial, interim or preliminary) report: data in the report may be incomplete or unverified.
-
PRELIMINARY
public static final DiagnosticReport.DiagnosticReportStatus PRELIMINARY
Verified early results are available, but not all results are final.
-
FINAL
public static final DiagnosticReport.DiagnosticReportStatus FINAL
The report is complete and verified by an authorized person.
-
AMENDED
public static final DiagnosticReport.DiagnosticReportStatus AMENDED
Subsequent to being final, the report has been modified. This includes any change in the results, diagnosis, narrative text, or other content of a report that has been issued.
-
CORRECTED
public static final DiagnosticReport.DiagnosticReportStatus CORRECTED
Subsequent to being final, the report has been modified to correct an error in the report or referenced results.
-
APPENDED
public static final DiagnosticReport.DiagnosticReportStatus APPENDED
Subsequent to being final, the report has been modified by adding new content. The existing content is unchanged.
-
CANCELLED
public static final DiagnosticReport.DiagnosticReportStatus CANCELLED
The report is unavailable because the measurement was not started or not completed (also sometimes called "aborted").
-
ENTEREDINERROR
public static final DiagnosticReport.DiagnosticReportStatus ENTEREDINERROR
The report has been withdrawn following a previous final release. This electronic record should never have existed, though it is possible that real-world decisions were based on it. (If real-world activity has occurred, the status should be "cancelled" rather than "entered-in-error".)
-
UNKNOWN
public static final DiagnosticReport.DiagnosticReportStatus UNKNOWN
The authoring system does not know which of the status values currently applies for this request. Note: This concept is not to be used for "other" - one of the listed statuses is presumed to apply, it's just not known which one.
-
NULL
public static final DiagnosticReport.DiagnosticReportStatus NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static DiagnosticReport.DiagnosticReportStatus[] 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 (DiagnosticReport.DiagnosticReportStatus c : DiagnosticReport.DiagnosticReportStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DiagnosticReport.DiagnosticReportStatus 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 DiagnosticReport.DiagnosticReportStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-