Package ca.uhn.fhir.model.dstu2.valueset
Enum DiagnosticReportStatusEnum
- java.lang.Object
-
- java.lang.Enum<DiagnosticReportStatusEnum>
-
- ca.uhn.fhir.model.dstu2.valueset.DiagnosticReportStatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<DiagnosticReportStatusEnum>
public enum DiagnosticReportStatusEnum extends Enum<DiagnosticReportStatusEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPENDEDDisplay: Appended
Code Value: appended The report has been modified subsequent to being Final, and is complete and verified by an authorized person.CANCELLEDDisplay: Cancelled
Code Value: cancelled The report is unavailable because the measurement was not started or not completed (also sometimes called "aborted").CORRECTEDDisplay: Corrected
Code Value: corrected The report has been modified subsequent to being Final, and is complete and verified by an authorized person.ENTERED_IN_ERRORDisplay: Entered in Error
Code Value: entered-in-error The report has been withdrawn following a previous final release.FINALDisplay: Final
Code Value: final The report is complete and verified by an authorized person.PARTIALDisplay: Partial
Code Value: partial This is a partial (e.g.REGISTEREDDisplay: Registered
Code Value: registered The existence of the report is registered, but there is nothing yet available.
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<DiagnosticReportStatusEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: DiagnosticReportStatus
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DiagnosticReportStatusEnumforCode(String theCode)Returns the enumerated value associated with this codeStringgetCode()Returns the code associated with this enumerated valueStringgetSystem()Returns the code system associated with this enumerated valuestatic DiagnosticReportStatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static DiagnosticReportStatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REGISTERED
public static final DiagnosticReportStatusEnum REGISTERED
Display: Registered
Code Value: registered The existence of the report is registered, but there is nothing yet available.
-
PARTIAL
public static final DiagnosticReportStatusEnum PARTIAL
Display: Partial
Code Value: 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 DiagnosticReportStatusEnum FINAL
Display: Final
Code Value: final The report is complete and verified by an authorized person.
-
CORRECTED
public static final DiagnosticReportStatusEnum CORRECTED
Display: Corrected
Code Value: 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 DiagnosticReportStatusEnum APPENDED
Display: Appended
Code Value: 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 DiagnosticReportStatusEnum CANCELLED
Display: Cancelled
Code Value: cancelled The report is unavailable because the measurement was not started or not completed (also sometimes called "aborted").
-
ENTERED_IN_ERROR
public static final DiagnosticReportStatusEnum ENTERED_IN_ERROR
Display: Entered in Error
Code Value: entered-in-error The report has been withdrawn following a previous final release.
-
-
Field Detail
-
VALUESET_IDENTIFIER
public static final String VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
- Constant Field Values
-
VALUESET_NAME
public static final String VALUESET_NAME
Name for this Value Set: DiagnosticReportStatus- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<DiagnosticReportStatusEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static DiagnosticReportStatusEnum[] 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 (DiagnosticReportStatusEnum c : DiagnosticReportStatusEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DiagnosticReportStatusEnum 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
-
forCode
public static DiagnosticReportStatusEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-