public enum TdbCharacterSet extends java.lang.Enum<TdbCharacterSet>
Enum Constant and Description |
---|
EUC
Japanese, for use with Unix servers
|
GBK
Simplified (mainland) Chinese, covers GBK and GB-2312-80
|
ISOLatin1
ISO 8859-1 Latin 1
|
ISOLatin2
ISO 8859-2 Latin 2
|
ISOLatin3
ISO 8859-3 Latin 3
|
ShiftJIS
Japanese, for use with Unix and Windows servers
|
UTF8
Unicode UTF-8.
|
Modifier and Type | Method and Description |
---|---|
static TdbCharacterSet |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TdbCharacterSet[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TdbCharacterSet ISOLatin1
public static final TdbCharacterSet ISOLatin2
public static final TdbCharacterSet ISOLatin3
public static final TdbCharacterSet GBK
public static final TdbCharacterSet EUC
public static final TdbCharacterSet ShiftJIS
public static final TdbCharacterSet UTF8
public static TdbCharacterSet[] values()
for (TdbCharacterSet c : TdbCharacterSet.values()) System.out.println(c);
public static TdbCharacterSet valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null