Package com.oracle.bmc.mysql.model
Enum ConfigurationVariables.CharacterSetServer
- java.lang.Object
-
- java.lang.Enum<ConfigurationVariables.CharacterSetServer>
-
- com.oracle.bmc.mysql.model.ConfigurationVariables.CharacterSetServer
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<ConfigurationVariables.CharacterSetServer>
- Enclosing class:
- ConfigurationVariables
public static enum ConfigurationVariables.CharacterSetServer extends Enum<ConfigurationVariables.CharacterSetServer> implements BmcEnum
The server’s default character set.If you set this variable, you should also set collation_server to specify the collation for the character set.
characterSetServer corresponds to the MySQL server variable [character_set_server](https://dev.mysql.com/doc/refman/en/server-system-variables.html#sysvar_character_set_server).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Armscii8
Ascii
Big5
Binary
Cp1250
Cp1251
Cp1256
Cp1257
Cp850
Cp852
Cp866
Cp932
Dec8
Eucjpms
Euckr
Gb18030
Gb2312
Gbk
Geostd8
Greek
Hebrew
Hp8
Keybcs2
Koi8R
Koi8U
Latin1
Latin2
Latin5
Latin7
Macce
Macroman
Sjis
Swe7
Tis620
Ucs2
Ujis
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.Utf16
Utf16Le
Utf32
Utf8Mb3
Utf8Mb4
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConfigurationVariables.CharacterSetServer
create(String key)
String
getValue()
static ConfigurationVariables.CharacterSetServer
valueOf(String name)
Returns the enum constant of this type with the specified name.static ConfigurationVariables.CharacterSetServer[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Armscii8
public static final ConfigurationVariables.CharacterSetServer Armscii8
-
Ascii
public static final ConfigurationVariables.CharacterSetServer Ascii
-
Big5
public static final ConfigurationVariables.CharacterSetServer Big5
-
Binary
public static final ConfigurationVariables.CharacterSetServer Binary
-
Cp1250
public static final ConfigurationVariables.CharacterSetServer Cp1250
-
Cp1251
public static final ConfigurationVariables.CharacterSetServer Cp1251
-
Cp1256
public static final ConfigurationVariables.CharacterSetServer Cp1256
-
Cp1257
public static final ConfigurationVariables.CharacterSetServer Cp1257
-
Cp850
public static final ConfigurationVariables.CharacterSetServer Cp850
-
Cp852
public static final ConfigurationVariables.CharacterSetServer Cp852
-
Cp866
public static final ConfigurationVariables.CharacterSetServer Cp866
-
Cp932
public static final ConfigurationVariables.CharacterSetServer Cp932
-
Dec8
public static final ConfigurationVariables.CharacterSetServer Dec8
-
Eucjpms
public static final ConfigurationVariables.CharacterSetServer Eucjpms
-
Euckr
public static final ConfigurationVariables.CharacterSetServer Euckr
-
Gb18030
public static final ConfigurationVariables.CharacterSetServer Gb18030
-
Gb2312
public static final ConfigurationVariables.CharacterSetServer Gb2312
-
Gbk
public static final ConfigurationVariables.CharacterSetServer Gbk
-
Geostd8
public static final ConfigurationVariables.CharacterSetServer Geostd8
-
Greek
public static final ConfigurationVariables.CharacterSetServer Greek
-
Hebrew
public static final ConfigurationVariables.CharacterSetServer Hebrew
-
Hp8
public static final ConfigurationVariables.CharacterSetServer Hp8
-
Keybcs2
public static final ConfigurationVariables.CharacterSetServer Keybcs2
-
Koi8R
public static final ConfigurationVariables.CharacterSetServer Koi8R
-
Koi8U
public static final ConfigurationVariables.CharacterSetServer Koi8U
-
Latin1
public static final ConfigurationVariables.CharacterSetServer Latin1
-
Latin2
public static final ConfigurationVariables.CharacterSetServer Latin2
-
Latin5
public static final ConfigurationVariables.CharacterSetServer Latin5
-
Latin7
public static final ConfigurationVariables.CharacterSetServer Latin7
-
Macce
public static final ConfigurationVariables.CharacterSetServer Macce
-
Macroman
public static final ConfigurationVariables.CharacterSetServer Macroman
-
Sjis
public static final ConfigurationVariables.CharacterSetServer Sjis
-
Swe7
public static final ConfigurationVariables.CharacterSetServer Swe7
-
Tis620
public static final ConfigurationVariables.CharacterSetServer Tis620
-
Ucs2
public static final ConfigurationVariables.CharacterSetServer Ucs2
-
Ujis
public static final ConfigurationVariables.CharacterSetServer Ujis
-
Utf16
public static final ConfigurationVariables.CharacterSetServer Utf16
-
Utf16Le
public static final ConfigurationVariables.CharacterSetServer Utf16Le
-
Utf32
public static final ConfigurationVariables.CharacterSetServer Utf32
-
Utf8Mb3
public static final ConfigurationVariables.CharacterSetServer Utf8Mb3
-
Utf8Mb4
public static final ConfigurationVariables.CharacterSetServer Utf8Mb4
-
UnknownEnumValue
public static final ConfigurationVariables.CharacterSetServer UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static ConfigurationVariables.CharacterSetServer[] 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 (ConfigurationVariables.CharacterSetServer c : ConfigurationVariables.CharacterSetServer.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConfigurationVariables.CharacterSetServer 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
-
create
public static ConfigurationVariables.CharacterSetServer create(String key)
-
-