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