Package ca.uhn.fhir.model.dstu2.valueset
Enum OrderStatusEnum
- All Implemented Interfaces:
Serializable
,Comparable<OrderStatusEnum>
-
Enum Constant Summary
Enum ConstantDescriptionDisplay: Aborted
Code Value: aborted Processing the order was stopped because of some workflow/business logic reason.Display: Accepted
Code Value: accepted The order has been accepted, and work is in progress.Display: Cancelled
Code Value: cancelled Processing the order was halted at the initiators request.Display: Completed
Code Value: completed The order has been completed.Display: Error
Code Value: error The order was unable to be processed because of a technical error (i.e.Display: Pending
Code Value: pending The order is known, but no processing has occurred at this timeDisplay: Rejected
Code Value: rejected The order was rejected because of a workflow/business logic reasonDisplay: Replaced
Code Value: replaced The order has been cancelled and replaced by another.Display: Review
Code Value: review The order is undergoing initial processing to determine whether it will be accepted (usually this involves human review) -
Field Summary
Modifier and TypeFieldDescriptionstatic final ca.uhn.fhir.model.api.IValueSetEnumBinder
<OrderStatusEnum> Converts codes to their respective enumerated valuesstatic final String
Identifier for this Value Set:static final String
Name for this Value Set: OrderStatus -
Method Summary
Modifier and TypeMethodDescriptionstatic OrderStatusEnum
Returns the enumerated value associated with this codegetCode()
Returns the code associated with this enumerated valueReturns the code system associated with this enumerated valuestatic OrderStatusEnum
Returns the enum constant of this type with the specified name.static OrderStatusEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PENDING
Display: Pending
Code Value: pending The order is known, but no processing has occurred at this time -
REVIEW
Display: Review
Code Value: review The order is undergoing initial processing to determine whether it will be accepted (usually this involves human review) -
REJECTED
Display: Rejected
Code Value: rejected The order was rejected because of a workflow/business logic reason -
ERROR
Display: Error
Code Value: error The order was unable to be processed because of a technical error (i.e. unexpected error) -
ACCEPTED
Display: Accepted
Code Value: accepted The order has been accepted, and work is in progress. -
CANCELLED
Display: Cancelled
Code Value: cancelled Processing the order was halted at the initiators request. -
REPLACED
Display: Replaced
Code Value: replaced The order has been cancelled and replaced by another. -
ABORTED
Display: Aborted
Code Value: aborted Processing the order was stopped because of some workflow/business logic reason. -
COMPLETED
Display: Completed
Code Value: completed The order has been completed.
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
-
VALUESET_NAME
Name for this Value Set: OrderStatus- See Also:
-
VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getCode
Returns the code associated with this enumerated value -
getSystem
Returns the code system associated with this enumerated value -
forCode
Returns the enumerated value associated with this code
-