public static enum Order.Urgency extends Enum<Order.Urgency>
| Enum Constant and Description |
|---|
ON_SCHEDULED_DATE |
ROUTINE |
STAT |
| Modifier and Type | Method and Description |
|---|---|
static Order.Urgency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Order.Urgency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Order.Urgency ROUTINE
public static final Order.Urgency STAT
public static final Order.Urgency ON_SCHEDULED_DATE
public static Order.Urgency[] values()
for (Order.Urgency c : Order.Urgency.values()) System.out.println(c);
public static Order.Urgency 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 © 2024 OpenMRS Inc.. All rights reserved.