Enum AnnouncementTag
- java.lang.Object
-
- java.lang.Enum<AnnouncementTag>
-
- com.bybit.api.client.domain.announcement.AnnouncementTag
-
- All Implemented Interfaces:
Serializable,Comparable<AnnouncementTag>
public enum AnnouncementTag extends Enum<AnnouncementTag>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AnnouncementTagvalueOf(String name)Returns the enum constant of this type with the specified name.static AnnouncementTag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SPOT
public static final AnnouncementTag SPOT
-
DERIVATIVES
public static final AnnouncementTag DERIVATIVES
-
SPOT_LISTINGS
public static final AnnouncementTag SPOT_LISTINGS
-
BTC
public static final AnnouncementTag BTC
-
ETH
public static final AnnouncementTag ETH
-
TRADING_BOTS
public static final AnnouncementTag TRADING_BOTS
-
USDC
public static final AnnouncementTag USDC
-
LEVERAGED_TOKENS
public static final AnnouncementTag LEVERAGED_TOKENS
-
USDT
public static final AnnouncementTag USDT
-
MARGIN_TRADING
public static final AnnouncementTag MARGIN_TRADING
-
PARTNERSHIPS
public static final AnnouncementTag PARTNERSHIPS
-
LAUNCHPAD
public static final AnnouncementTag LAUNCHPAD
-
UPGRADES
public static final AnnouncementTag UPGRADES
-
BYVOTES
public static final AnnouncementTag BYVOTES
-
DELISTINGS
public static final AnnouncementTag DELISTINGS
-
VIP
public static final AnnouncementTag VIP
-
FUTURES
public static final AnnouncementTag FUTURES
-
INSTITUTIONS
public static final AnnouncementTag INSTITUTIONS
-
OPTIONS
public static final AnnouncementTag OPTIONS
-
WEB3
public static final AnnouncementTag WEB3
-
COPY_TRADING
public static final AnnouncementTag COPY_TRADING
-
EARN
public static final AnnouncementTag EARN
-
BYBIT_SAVINGS
public static final AnnouncementTag BYBIT_SAVINGS
-
DUAL_ASSET
public static final AnnouncementTag DUAL_ASSET
-
LIQUIDITY_MINING
public static final AnnouncementTag LIQUIDITY_MINING
-
SHARK_FIN
public static final AnnouncementTag SHARK_FIN
-
LAUNCHPOOL
public static final AnnouncementTag LAUNCHPOOL
-
NFT_GRAB_PIC
public static final AnnouncementTag NFT_GRAB_PIC
-
BUY_CRYPTO
public static final AnnouncementTag BUY_CRYPTO
-
P2P_TRADING
public static final AnnouncementTag P2P_TRADING
-
FIAT_DEPOSIT
public static final AnnouncementTag FIAT_DEPOSIT
-
CRYPTO_DEPOSIT
public static final AnnouncementTag CRYPTO_DEPOSIT
-
-
Method Detail
-
values
public static AnnouncementTag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AnnouncementTag c : AnnouncementTag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AnnouncementTag valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-