public enum OrderType extends Enum<OrderType>
| 枚举常量和说明 |
|---|
Auction |
AuctionMarket |
EnhancedLimit |
Limit |
Market |
public static final OrderType Auction
public static final OrderType AuctionMarket
public static final OrderType Limit
public static final OrderType EnhancedLimit
public static final OrderType Market
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.