Enum LanguageSymbol
- java.lang.Object
-
- java.lang.Enum<LanguageSymbol>
-
- com.bybit.api.client.domain.announcement.LanguageSymbol
-
- All Implemented Interfaces:
Serializable,Comparable<LanguageSymbol>
public enum LanguageSymbol extends Enum<LanguageSymbol>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LanguageSymbolvalueOf(String name)Returns the enum constant of this type with the specified name.static LanguageSymbol[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DE_DE
public static final LanguageSymbol DE_DE
-
EN_US
public static final LanguageSymbol EN_US
-
ES_AR
public static final LanguageSymbol ES_AR
-
ES_ES
public static final LanguageSymbol ES_ES
-
ES_MX
public static final LanguageSymbol ES_MX
-
FR_FR
public static final LanguageSymbol FR_FR
-
KK_KZ
public static final LanguageSymbol KK_KZ
-
ID_ID
public static final LanguageSymbol ID_ID
-
UK_UA
public static final LanguageSymbol UK_UA
-
JA_JP
public static final LanguageSymbol JA_JP
-
RU_RU
public static final LanguageSymbol RU_RU
-
TH_TH
public static final LanguageSymbol TH_TH
-
PT_BR
public static final LanguageSymbol PT_BR
-
TR_TR
public static final LanguageSymbol TR_TR
-
VI_VN
public static final LanguageSymbol VI_VN
-
ZH_TW
public static final LanguageSymbol ZH_TW
-
AR_SA
public static final LanguageSymbol AR_SA
-
HI_IN
public static final LanguageSymbol HI_IN
-
FIL_PH
public static final LanguageSymbol FIL_PH
-
-
Method Detail
-
values
public static LanguageSymbol[] 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 (LanguageSymbol c : LanguageSymbol.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LanguageSymbol 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
-
-