public static enum OrderService.ORDER_STATUS extends Enum<OrderService.ORDER_STATUS>
| Enum Constant and Description | 
|---|
ANY
All orders match on this status 
 | 
COMPLETE
Only orders that the patient has completed 
 | 
CURRENT
The patient is considered to be currently on this order 
 | 
CURRENT_AND_FUTURE
The patient is considered to be currently and or future on this order 
 | 
NOTVOIDED
All orders that have not been voided/deleted 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static OrderService.ORDER_STATUS | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static OrderService.ORDER_STATUS[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final OrderService.ORDER_STATUS CURRENT
public static final OrderService.ORDER_STATUS ANY
public static final OrderService.ORDER_STATUS COMPLETE
public static final OrderService.ORDER_STATUS NOTVOIDED
public static final OrderService.ORDER_STATUS CURRENT_AND_FUTURE
public static OrderService.ORDER_STATUS[] values()
for (OrderService.ORDER_STATUS c : OrderService.ORDER_STATUS.values()) System.out.println(c);
public static OrderService.ORDER_STATUS 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 nullCopyright © 2018 OpenMRS LLC.. All Rights Reserved.