public enum ForbidReason extends Enum<ForbidReason>
| Enum Constant and Description |
|---|
DELISTED
deListing
|
INSTRUMENT_TYPE_ERROR
wrong symbol type
|
IPO_DELAY
delayed listing
|
NAME_CHANGE
name change
|
OTHER
other
|
REVERSE_SPLIT
a reverse stock split
|
STOCK_SPLIT
a stock split
|
TO_OTC
Exchange changed to OTC
|
| Modifier and Type | Method and Description |
|---|---|
static ForbidReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ForbidReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ForbidReason DELISTED
public static final ForbidReason REVERSE_SPLIT
public static final ForbidReason STOCK_SPLIT
public static final ForbidReason TO_OTC
public static final ForbidReason NAME_CHANGE
public static final ForbidReason IPO_DELAY
public static final ForbidReason INSTRUMENT_TYPE_ERROR
public static final ForbidReason OTHER
public static ForbidReason[] values()
for (ForbidReason c : ForbidReason.values()) System.out.println(c);
public static ForbidReason 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.