Package ca.uhn.fhir.model.dstu2.valueset
Enum DiagnosticOrderStatusEnum
- java.lang.Object
-
- java.lang.Enum<DiagnosticOrderStatusEnum>
-
- ca.uhn.fhir.model.dstu2.valueset.DiagnosticOrderStatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<DiagnosticOrderStatusEnum>
public enum DiagnosticOrderStatusEnum extends Enum<DiagnosticOrderStatusEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCEPTEDDisplay: Accepted
Code Value: accepted The receiving system has accepted the order, but work has not yet commenced.CANCELLEDDisplay: Cancelled
Code Value: cancelled The request has been withdrawn.COMPLETEDDisplay: Completed
Code Value: completed The work has been completed, the report(s) released, and no further work is planned.DRAFTDisplay: Draft
Code Value: draft The request is in preliminary form prior to being sent.FAILEDDisplay: Failed
Code Value: failed The diagnostic investigation was attempted, but due to some procedural error, it could not be completed.IN_PROGRESSDisplay: In-Progress
Code Value: in-progress The work to fulfill the order is happening.PLANNEDDisplay: Planned
Code Value: planned The request has been planned.PROPOSEDDisplay: Proposed
Code Value: proposed The request has been proposed.RECEIVEDDisplay: Received
Code Value: received The receiving system has received the order, but not yet decided whether it will be performed.REJECTEDDisplay: Rejected
Code Value: rejected The receiving system has declined to fulfill the request.REQUESTEDDisplay: Requested
Code Value: requested The request has been placed.REVIEWDisplay: Review
Code Value: review The work is complete, and the outcomes are being reviewed for approval.SUSPENDEDDisplay: Suspended
Code Value: suspended The request has been held by originating system/user request.
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<DiagnosticOrderStatusEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: DiagnosticOrderStatus
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DiagnosticOrderStatusEnumforCode(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 DiagnosticOrderStatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static DiagnosticOrderStatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROPOSED
public static final DiagnosticOrderStatusEnum PROPOSED
Display: Proposed
Code Value: proposed The request has been proposed.
-
DRAFT
public static final DiagnosticOrderStatusEnum DRAFT
Display: Draft
Code Value: draft The request is in preliminary form prior to being sent.
-
PLANNED
public static final DiagnosticOrderStatusEnum PLANNED
Display: Planned
Code Value: planned The request has been planned.
-
REQUESTED
public static final DiagnosticOrderStatusEnum REQUESTED
Display: Requested
Code Value: requested The request has been placed.
-
RECEIVED
public static final DiagnosticOrderStatusEnum RECEIVED
Display: Received
Code Value: received The receiving system has received the order, but not yet decided whether it will be performed.
-
ACCEPTED
public static final DiagnosticOrderStatusEnum ACCEPTED
Display: Accepted
Code Value: accepted The receiving system has accepted the order, but work has not yet commenced.
-
IN_PROGRESS
public static final DiagnosticOrderStatusEnum IN_PROGRESS
Display: In-Progress
Code Value: in-progress The work to fulfill the order is happening.
-
REVIEW
public static final DiagnosticOrderStatusEnum REVIEW
Display: Review
Code Value: review The work is complete, and the outcomes are being reviewed for approval.
-
COMPLETED
public static final DiagnosticOrderStatusEnum COMPLETED
Display: Completed
Code Value: completed The work has been completed, the report(s) released, and no further work is planned.
-
CANCELLED
public static final DiagnosticOrderStatusEnum CANCELLED
Display: Cancelled
Code Value: cancelled The request has been withdrawn.
-
SUSPENDED
public static final DiagnosticOrderStatusEnum SUSPENDED
Display: Suspended
Code Value: suspended The request has been held by originating system/user request.
-
REJECTED
public static final DiagnosticOrderStatusEnum REJECTED
Display: Rejected
Code Value: rejected The receiving system has declined to fulfill the request.
-
FAILED
public static final DiagnosticOrderStatusEnum FAILED
Display: Failed
Code Value: failed The diagnostic investigation was attempted, but due to some procedural error, it could not be completed.
-
-
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: DiagnosticOrderStatus- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<DiagnosticOrderStatusEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static DiagnosticOrderStatusEnum[] 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 (DiagnosticOrderStatusEnum c : DiagnosticOrderStatusEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DiagnosticOrderStatusEnum 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 DiagnosticOrderStatusEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-