public static enum OrderResponse.OrderStatus extends Enum<OrderResponse.OrderStatus>
| Enum Constant and Description |
|---|
ABORTED
Processing the order was stopped because of some workflow/business logic reason.
|
ACCEPTED
The order has been accepted, and work is in progress.
|
CANCELLED
Processing the order was halted at the initiators request.
|
COMPLETED
The order has been completed.
|
ERROR
The order was unable to be processed because of a technical error (i.e.
|
NULL
added to help the parsers
|
PENDING
The order is known, but no processing has occurred at this time
|
REJECTED
The order was rejected because of a workflow/business logic reason
|
REPLACED
The order has been cancelled and replaced by another.
|
REVIEW
The order is undergoing initial processing to determine whether it will be accepted (usually this involves human review)
|
| Modifier and Type | Method and Description |
|---|---|
static OrderResponse.OrderStatus |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static OrderResponse.OrderStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderResponse.OrderStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderResponse.OrderStatus PENDING
public static final OrderResponse.OrderStatus REVIEW
public static final OrderResponse.OrderStatus REJECTED
public static final OrderResponse.OrderStatus ERROR
public static final OrderResponse.OrderStatus ACCEPTED
public static final OrderResponse.OrderStatus CANCELLED
public static final OrderResponse.OrderStatus REPLACED
public static final OrderResponse.OrderStatus ABORTED
public static final OrderResponse.OrderStatus COMPLETED
public static final OrderResponse.OrderStatus NULL
public static OrderResponse.OrderStatus[] values()
for (OrderResponse.OrderStatus c : OrderResponse.OrderStatus.values()) System.out.println(c);
public static OrderResponse.OrderStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static OrderResponse.OrderStatus fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
org.hl7.fhir.exceptions.FHIRExceptionpublic String getDefinition()
public String getDisplay()
Copyright © 2014–2018 University Health Network. All rights reserved.