public enum MySQLCharset extends Enum<MySQLCharset>
| Enum Constant and Description |
|---|
ARMSCII8 |
ASCII |
BIG5 |
BINARY |
CP1250 |
CP1251 |
CP1252 |
CP1256 |
CP1257 |
CP850 |
CP852 |
CP866 |
CP932 |
EUCJPMS |
EUCKR |
GB2312 |
GBK |
GEOSTD8 |
GREEK |
HEBREW |
HP8 |
KEYBCS2 |
KOI8R |
KOI8U |
LATIN1 |
LATIN2 |
LATIN5 |
LATIN7 |
MACCE |
MACROMAN |
SJIS |
SWE7 |
TIS620 |
UCS2 |
UJIS |
UTF16 |
UTF16LE |
UTF32 |
UTF8 |
UTF8MB4 |
| Modifier and Type | Field and Description |
|---|---|
int |
defaultId |
String |
javaIoCharsetName |
String |
javaNioCharsetName |
String |
mysqlCharsetName |
Charset |
nioCharset |
| Modifier and Type | Method and Description |
|---|---|
static MySQLCharset |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MySQLCharset[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MySQLCharset BIG5
public static final MySQLCharset CP1252
public static final MySQLCharset CP850
public static final MySQLCharset HP8
public static final MySQLCharset KOI8R
public static final MySQLCharset LATIN1
public static final MySQLCharset LATIN2
public static final MySQLCharset SWE7
public static final MySQLCharset ASCII
public static final MySQLCharset UJIS
public static final MySQLCharset SJIS
public static final MySQLCharset HEBREW
public static final MySQLCharset TIS620
public static final MySQLCharset EUCKR
public static final MySQLCharset KOI8U
public static final MySQLCharset GB2312
public static final MySQLCharset GREEK
public static final MySQLCharset CP1250
public static final MySQLCharset GBK
public static final MySQLCharset LATIN5
public static final MySQLCharset ARMSCII8
public static final MySQLCharset UTF8
public static final MySQLCharset UCS2
public static final MySQLCharset CP866
public static final MySQLCharset KEYBCS2
public static final MySQLCharset MACCE
public static final MySQLCharset MACROMAN
public static final MySQLCharset CP852
public static final MySQLCharset UTF8MB4
public static final MySQLCharset LATIN7
public static final MySQLCharset CP1251
public static final MySQLCharset UTF16
public static final MySQLCharset UTF16LE
public static final MySQLCharset CP1256
public static final MySQLCharset CP1257
public static final MySQLCharset UTF32
public static final MySQLCharset BINARY
public static final MySQLCharset GEOSTD8
public static final MySQLCharset CP932
public static final MySQLCharset EUCJPMS
public final int defaultId
public final String mysqlCharsetName
public final String javaIoCharsetName
public final String javaNioCharsetName
public final Charset nioCharset
public static MySQLCharset[] values()
for (MySQLCharset c : MySQLCharset.values()) System.out.println(c);
public static MySQLCharset 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 © 2015. All rights reserved.