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 SummaryEnum Constants Enum Constant Description Armscii8AsciiBig5BinaryCp1250Cp1251Cp1256Cp1257Cp850Cp852Cp866Cp932Dec8EucjpmsEuckrGb18030Gb2312GbkGeostd8GreekHebrewHp8Keybcs2Koi8RKoi8ULatin1Latin2Latin5Latin7MacceMacromanSjisSwe7Tis620Ucs2UjisUnknownEnumValueThis value is used if a service returns a value for this enum that is not recognized by this version of the SDK.Utf16Utf16LeUtf32Utf8Mb3Utf8Mb4
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConfigurationVariables.CharacterSetServercreate(String key)StringgetValue()static ConfigurationVariables.CharacterSetServervalueOf(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- 
Armscii8public static final ConfigurationVariables.CharacterSetServer Armscii8 
 - 
Asciipublic static final ConfigurationVariables.CharacterSetServer Ascii 
 - 
Big5public static final ConfigurationVariables.CharacterSetServer Big5 
 - 
Binarypublic static final ConfigurationVariables.CharacterSetServer Binary 
 - 
Cp1250public static final ConfigurationVariables.CharacterSetServer Cp1250 
 - 
Cp1251public static final ConfigurationVariables.CharacterSetServer Cp1251 
 - 
Cp1256public static final ConfigurationVariables.CharacterSetServer Cp1256 
 - 
Cp1257public static final ConfigurationVariables.CharacterSetServer Cp1257 
 - 
Cp850public static final ConfigurationVariables.CharacterSetServer Cp850 
 - 
Cp852public static final ConfigurationVariables.CharacterSetServer Cp852 
 - 
Cp866public static final ConfigurationVariables.CharacterSetServer Cp866 
 - 
Cp932public static final ConfigurationVariables.CharacterSetServer Cp932 
 - 
Dec8public static final ConfigurationVariables.CharacterSetServer Dec8 
 - 
Eucjpmspublic static final ConfigurationVariables.CharacterSetServer Eucjpms 
 - 
Euckrpublic static final ConfigurationVariables.CharacterSetServer Euckr 
 - 
Gb18030public static final ConfigurationVariables.CharacterSetServer Gb18030 
 - 
Gb2312public static final ConfigurationVariables.CharacterSetServer Gb2312 
 - 
Gbkpublic static final ConfigurationVariables.CharacterSetServer Gbk 
 - 
Geostd8public static final ConfigurationVariables.CharacterSetServer Geostd8 
 - 
Greekpublic static final ConfigurationVariables.CharacterSetServer Greek 
 - 
Hebrewpublic static final ConfigurationVariables.CharacterSetServer Hebrew 
 - 
Hp8public static final ConfigurationVariables.CharacterSetServer Hp8 
 - 
Keybcs2public static final ConfigurationVariables.CharacterSetServer Keybcs2 
 - 
Koi8Rpublic static final ConfigurationVariables.CharacterSetServer Koi8R 
 - 
Koi8Upublic static final ConfigurationVariables.CharacterSetServer Koi8U 
 - 
Latin1public static final ConfigurationVariables.CharacterSetServer Latin1 
 - 
Latin2public static final ConfigurationVariables.CharacterSetServer Latin2 
 - 
Latin5public static final ConfigurationVariables.CharacterSetServer Latin5 
 - 
Latin7public static final ConfigurationVariables.CharacterSetServer Latin7 
 - 
Maccepublic static final ConfigurationVariables.CharacterSetServer Macce 
 - 
Macromanpublic static final ConfigurationVariables.CharacterSetServer Macroman 
 - 
Sjispublic static final ConfigurationVariables.CharacterSetServer Sjis 
 - 
Swe7public static final ConfigurationVariables.CharacterSetServer Swe7 
 - 
Tis620public static final ConfigurationVariables.CharacterSetServer Tis620 
 - 
Ucs2public static final ConfigurationVariables.CharacterSetServer Ucs2 
 - 
Ujispublic static final ConfigurationVariables.CharacterSetServer Ujis 
 - 
Utf16public static final ConfigurationVariables.CharacterSetServer Utf16 
 - 
Utf16Lepublic static final ConfigurationVariables.CharacterSetServer Utf16Le 
 - 
Utf32public static final ConfigurationVariables.CharacterSetServer Utf32 
 - 
Utf8Mb3public static final ConfigurationVariables.CharacterSetServer Utf8Mb3 
 - 
Utf8Mb4public static final ConfigurationVariables.CharacterSetServer Utf8Mb4 
 - 
UnknownEnumValuepublic 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- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
createpublic static ConfigurationVariables.CharacterSetServer create(String key) 
 
- 
 
-