public enum InstrumentSuperType extends Enum<InstrumentSuperType>
| Enum Constant and Description |
|---|
EQUITY
Equity
|
MUTUAL_FUND
Mutual Fund
|
OPTION
Option
|
| Modifier and Type | Method and Description |
|---|---|
static InstrumentSuperType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InstrumentSuperType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstrumentSuperType EQUITY
public static final InstrumentSuperType OPTION
public static final InstrumentSuperType MUTUAL_FUND
public static InstrumentSuperType[] values()
for (InstrumentSuperType c : InstrumentSuperType.values()) System.out.println(c);
public static InstrumentSuperType 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.