Package org.hl7.fhir.dstu2.model
Enum DiagnosticOrder.DiagnosticOrderStatus
- java.lang.Object
-
- java.lang.Enum<DiagnosticOrder.DiagnosticOrderStatus>
-
- org.hl7.fhir.dstu2.model.DiagnosticOrder.DiagnosticOrderStatus
-
- All Implemented Interfaces:
Serializable,Comparable<DiagnosticOrder.DiagnosticOrderStatus>
- Enclosing class:
- DiagnosticOrder
public static enum DiagnosticOrder.DiagnosticOrderStatus extends Enum<DiagnosticOrder.DiagnosticOrderStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCEPTEDThe receiving system has accepted the order, but work has not yet commenced.CANCELLEDThe request has been withdrawn.COMPLETEDThe work has been completed, the report(s) released, and no further work is planned.DRAFTThe request is in preliminary form prior to being sent.FAILEDThe diagnostic investigation was attempted, but due to some procedural error, it could not be completed.INPROGRESSThe work to fulfill the order is happening.NULLadded to help the parsersPLANNEDThe request has been planned.PROPOSEDThe request has been proposed.RECEIVEDThe receiving system has received the order, but not yet decided whether it will be performed.REJECTEDThe receiving system has declined to fulfill the request.REQUESTEDThe request has been placed.REVIEWThe work is complete, and the outcomes are being reviewed for approval.SUSPENDEDThe request has been held by originating system/user request.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DiagnosticOrder.DiagnosticOrderStatusfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static DiagnosticOrder.DiagnosticOrderStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static DiagnosticOrder.DiagnosticOrderStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROPOSED
public static final DiagnosticOrder.DiagnosticOrderStatus PROPOSED
The request has been proposed.
-
DRAFT
public static final DiagnosticOrder.DiagnosticOrderStatus DRAFT
The request is in preliminary form prior to being sent.
-
PLANNED
public static final DiagnosticOrder.DiagnosticOrderStatus PLANNED
The request has been planned.
-
REQUESTED
public static final DiagnosticOrder.DiagnosticOrderStatus REQUESTED
The request has been placed.
-
RECEIVED
public static final DiagnosticOrder.DiagnosticOrderStatus RECEIVED
The receiving system has received the order, but not yet decided whether it will be performed.
-
ACCEPTED
public static final DiagnosticOrder.DiagnosticOrderStatus ACCEPTED
The receiving system has accepted the order, but work has not yet commenced.
-
INPROGRESS
public static final DiagnosticOrder.DiagnosticOrderStatus INPROGRESS
The work to fulfill the order is happening.
-
REVIEW
public static final DiagnosticOrder.DiagnosticOrderStatus REVIEW
The work is complete, and the outcomes are being reviewed for approval.
-
COMPLETED
public static final DiagnosticOrder.DiagnosticOrderStatus COMPLETED
The work has been completed, the report(s) released, and no further work is planned.
-
CANCELLED
public static final DiagnosticOrder.DiagnosticOrderStatus CANCELLED
The request has been withdrawn.
-
SUSPENDED
public static final DiagnosticOrder.DiagnosticOrderStatus SUSPENDED
The request has been held by originating system/user request.
-
REJECTED
public static final DiagnosticOrder.DiagnosticOrderStatus REJECTED
The receiving system has declined to fulfill the request.
-
FAILED
public static final DiagnosticOrder.DiagnosticOrderStatus FAILED
The diagnostic investigation was attempted, but due to some procedural error, it could not be completed.
-
NULL
public static final DiagnosticOrder.DiagnosticOrderStatus NULL
added to help the parsers
-
-
Method Detail
-
values
public static DiagnosticOrder.DiagnosticOrderStatus[] 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 (DiagnosticOrder.DiagnosticOrderStatus c : DiagnosticOrder.DiagnosticOrderStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DiagnosticOrder.DiagnosticOrderStatus 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 DiagnosticOrder.DiagnosticOrderStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-