Package org.hl7.fhir.dstu2.model
Enum DiagnosticReport.DiagnosticReportStatus
- java.lang.Object
-
- java.lang.Enum<DiagnosticReport.DiagnosticReportStatus>
-
- org.hl7.fhir.dstu2.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 APPENDEDThe report has been modified subsequent to being Final, and is complete and verified by an authorized person.CANCELLEDThe report is unavailable because the measurement was not started or not completed (also sometimes called "aborted").CORRECTEDThe report has been modified subsequent to being Final, and is complete and verified by an authorized person.ENTEREDINERRORThe report has been withdrawn following a previous final release.FINALThe report is complete and verified by an authorized person.NULLadded to help the parsersPARTIALThis is a partial (e.g.REGISTEREDThe existence of the report is registered, but there is nothing yet available.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DiagnosticReport.DiagnosticReportStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static DiagnosticReport.DiagnosticReportStatusvalueOf(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.
-
FINAL
public static final DiagnosticReport.DiagnosticReportStatus FINAL
The report is complete and verified by an authorized person.
-
CORRECTED
public static final DiagnosticReport.DiagnosticReportStatus CORRECTED
The report has been modified subsequent to being Final, and is complete and verified by an authorized person. New content has been added, but existing content hasn't changed
-
APPENDED
public static final DiagnosticReport.DiagnosticReportStatus APPENDED
The report has been modified subsequent to being Final, and is complete and verified by an authorized person. New content has been added, but existing content hasn't changed.
-
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.
-
NULL
public static final DiagnosticReport.DiagnosticReportStatus NULL
added to help the parsers
-
-
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()
-
-