public enum OrderType extends Enum<OrderType>
public static final OrderType MKT
public static final OrderType LMT
public static final OrderType STP
public static final OrderType STP_LMT
public static final OrderType TRAIL
public static final OrderType AM
public static final OrderType AL
public static final OrderType TWAP
public static final OrderType VWAP
public static OrderType[] values()
for (OrderType c : OrderType.values()) System.out.println(c);
public static OrderType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2025. All rights reserved.