public enum TickerType extends Enum<TickerType>
| Enum Constant and Description |
|---|
ETF
ETF
|
RIGHT
Right
|
STOCK
Stock
|
UNIT
Unit
|
WARRANT
Warrant
|
| Modifier and Type | Method and Description |
|---|---|
static TickerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TickerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TickerType STOCK
public static final TickerType ETF
public static final TickerType UNIT
public static final TickerType WARRANT
public static final TickerType RIGHT
public static TickerType[] values()
for (TickerType c : TickerType.values()) System.out.println(c);
public static TickerType 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.