public enum Category extends Enum<Category>
| Enum Constant and Description |
|---|
CN_STOCK
China Connect Stocks
|
CRYPTO
Cryptocurrency
|
HK_ETF
Hong Kong ETFs
|
HK_STOCK
Hong Kong stocks
|
NFT
NFTs
|
US_CFDONSTOCK
Stock/ETF CFDs
|
US_ETF
US ETFs
|
US_OPTION
U.S.
|
US_STOCK
US Stocks
|
| Modifier and Type | Method and Description |
|---|---|
static Category |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Category[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Category CN_STOCK
public static final Category HK_STOCK
public static final Category HK_ETF
public static final Category US_STOCK
public static final Category US_ETF
public static final Category US_OPTION
public static final Category CRYPTO
public static final Category NFT
public static final Category US_CFDONSTOCK
public static Category[] values()
for (Category c : Category.values()) System.out.println(c);
public static Category 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.