public enum EOrdStat extends Enum<EOrdStat>
Customer order status - new/pending/closed/canceled.
| Enum Constant and Description |
|---|
BOOKED
1, all items are booked.
|
CANCELED
4, canceled.
|
CLOSED
3, closed, payed and shipped.
|
NEW
0, new, non-booked yet.
|
PAYED
2, payed.
|
| Modifier and Type | Method and Description |
|---|---|
static EOrdStat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EOrdStat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EOrdStat NEW
0, new, non-booked yet.
public static final EOrdStat BOOKED
1, all items are booked.
public static final EOrdStat PAYED
2, payed.
public static final EOrdStat CLOSED
3, closed, payed and shipped.
public static final EOrdStat CANCELED
4, canceled.
public static EOrdStat[] values()
for (EOrdStat c : EOrdStat.values()) System.out.println(c);
public static EOrdStat 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 © 2019–2020. All rights reserved.