public enum OrderEvent extends Enum<OrderEvent>
| Enum Constant and Description |
|---|
CANCELLED
Canceled
|
FILLED
Filled
|
REJECTED
Rejected
|
REPLACED
Revised
|
| Modifier and Type | Method and Description |
|---|---|
static OrderEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderEvent CANCELLED
public static final OrderEvent REPLACED
public static final OrderEvent REJECTED
public static final OrderEvent FILLED
public static OrderEvent[] values()
for (OrderEvent c : OrderEvent.values()) System.out.println(c);
public static OrderEvent 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 © 2025 Webull. All rights reserved.