public enum ComboType extends Enum<ComboType>
| Enum Constant and Description |
|---|
MASTER
Master Order
|
NORMAL
Simple Order
|
OCO
One Cancels Other Order
|
OTO
One Triggers Other Order
|
OTOCO
One Triggers a One Cancels Other Order
|
STOP_LOSS
Stop Loss Order
|
STOP_PROFIT
Take Profit Order
|
| Modifier and Type | Method and Description |
|---|---|
static ComboType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComboType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComboType NORMAL
public static final ComboType MASTER
public static final ComboType STOP_LOSS
public static final ComboType STOP_PROFIT
public static final ComboType OTO
public static final ComboType OCO
public static final ComboType OTOCO
public static ComboType[] values()
for (ComboType c : ComboType.values()) System.out.println(c);
public static ComboType 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.