public enum OrderType extends Enum<OrderType>
| Enum Constant and Description |
|---|
AT_AUCTION
Auction order (Hong Kong stocks)
|
AT_AUCTION_LIMIT
At-auction limit order (Hong Kong stocks)
|
ENHANCED_LIMIT
Enhanced Limit Order (Hong Kong stocks)
|
LIMIT
Limit Order (U.S.
|
MARKET
Market Order (U.S.
|
MARKET_ON_CLOSE
Market On Close order (U.S.
|
MARKET_ON_OPEN
Market On Open order (U.S.
|
STOP_LOSS
Stop Order (U.S.
|
STOP_LOSS_LIMIT
Stop Limit Order (U.S.
|
TRAILING_STOP_LOSS
Trailing Stop Order (U.S.
|
| Modifier and Type | Method and Description |
|---|---|
static OrderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderType LIMIT
public static final OrderType MARKET
public static final OrderType STOP_LOSS
public static final OrderType STOP_LOSS_LIMIT
public static final OrderType TRAILING_STOP_LOSS
public static final OrderType ENHANCED_LIMIT
public static final OrderType AT_AUCTION
public static final OrderType AT_AUCTION_LIMIT
public static final OrderType MARKET_ON_OPEN
public static final OrderType MARKET_ON_CLOSE
public static OrderType[] values()
for (OrderType c : OrderType.values()) System.out.println(c);
public static OrderType 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.