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