public enum SecType extends Enum<SecType>
public static final SecType STK
public static final SecType OPT
public static final SecType WAR
public static final SecType IOPT
public static final SecType CASH
public static final SecType FUT
public static final SecType FOP
public static SecType[] values()
for (SecType c : SecType.values()) System.out.println(c);
public static SecType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2022. All rights reserved.