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