public enum CharacterSetMode extends java.lang.Enum<CharacterSetMode>
CharacterSetMode is an enumeration defining the different String encodings supported for certain symbologies of barcodes.
The result extracted from the label is converted to a selected character set, supported by Java.
The supported symbologies are:
| BIG_5 | Big5, Traditional Chinese |
| EUC_CN | GB2312, EUC encoding, Simplified Chinese |
| EUC_KR | KS C 5601, EUC encoding, Korean |
| GB18030 | Simplified Chinese, PRC standard |
| GBK | GBK, Simplified Chinese |
| IBM_437 | MS-DOS United States, Australia, New Zealand, South Africa |
| ISO_8859_1 | Latin Alphabet No. 1 |
| ISO_8859_2 | Latin Alphabet No. 2 |
| ISO_8859_3 | Latin Alphabet No. 3 |
| ISO_8859_4 | Latin Alphabet No. 4 |
| ISO_8859_5 | Latin/Cyrillic Alphabet |
| ISO_8859_6 | Latin/Arabic Alphabet |
| ISO_8859_7 | Latin/Greek Alphabet |
| ISO_8859_8 | Latin/Hebrew Alphabet |
| ISO_8859_9 | Latin No. 5/Turkish Alphabet |
| ISO_8859_11 | Latin/Thai Alphabet |
| ISO_8859_13 | Latin No. 7/Baltic Rim Alphabet |
| ISO_8859_14 | Latin No. 8/Celtic Alphabet |
| ISO_8859_15 | Latin Alphabet No. 9 |
| SHIFT_JIS | Shift-JIS, Japanese |
| US_ASCII | American Standard Code for Information Interchange |
| UTF_8 | Eight-bit Unicode (or UCS) Transformation Format |
| UTF_16 | Sixteen-bit Unicode (or UCS) Transformation Format, byte order identified by an optional byte-order mark |
| WINDOWS_1250 | Windows Eastern European |
| WINDOWS_1251 | Windows Cyrillic |
| WINDOWS_1252 | Windows Latin-1 |
| WINDOWS_1254 | Windows Turkish |
| WINDOWS_1256 | Windows Arabic |
| Enum Constant and Description |
|---|
BIG_5
Big5
|
EUC_CN
EUC-CN
|
EUC_KR
EUC-KR
|
GB18030
GB18030
|
GBK
GBK
|
IBM_437
IBM-437
|
ISO_8859_1
ISO-8859-1
|
ISO_8859_11
ISO-8859-11
|
ISO_8859_13
ISO-8859-13
|
ISO_8859_14
ISO-8859-14
|
ISO_8859_15
ISO-8859-15
|
ISO_8859_2
ISO-8859-2
|
ISO_8859_3
ISO-8859-3
|
ISO_8859_4
ISO-8859-4
|
ISO_8859_5
ISO-8859-5
|
ISO_8859_6
ISO-8859-6
|
ISO_8859_7
ISO-8859-7
|
ISO_8859_8
ISO-8859-8
|
ISO_8859_9
ISO-8859-9
|
SHIFT_JIS
Shift-JIS
|
US_ASCII
ASCII
|
UTF_16
UTF-16
|
UTF_8
UTF-8
|
WINDOWS_1250
Windows 1250
|
WINDOWS_1251
Windows 1251
|
WINDOWS_1252
Windows 1252
|
WINDOWS_1254
Windows 1254
|
WINDOWS_1256
Windows 1256
|
| Modifier and Type | Method and Description |
|---|---|
static CharacterSetMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CharacterSetMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CharacterSetMode BIG_5
public static final CharacterSetMode EUC_CN
public static final CharacterSetMode EUC_KR
public static final CharacterSetMode GB18030
public static final CharacterSetMode GBK
public static final CharacterSetMode IBM_437
public static final CharacterSetMode ISO_8859_1
public static final CharacterSetMode ISO_8859_2
public static final CharacterSetMode ISO_8859_3
public static final CharacterSetMode ISO_8859_4
public static final CharacterSetMode ISO_8859_5
public static final CharacterSetMode ISO_8859_6
public static final CharacterSetMode ISO_8859_7
public static final CharacterSetMode ISO_8859_8
public static final CharacterSetMode ISO_8859_9
public static final CharacterSetMode ISO_8859_11
public static final CharacterSetMode ISO_8859_13
public static final CharacterSetMode ISO_8859_14
public static final CharacterSetMode ISO_8859_15
public static final CharacterSetMode SHIFT_JIS
public static final CharacterSetMode US_ASCII
public static final CharacterSetMode UTF_8
public static final CharacterSetMode UTF_16
public static final CharacterSetMode WINDOWS_1250
public static final CharacterSetMode WINDOWS_1251
public static final CharacterSetMode WINDOWS_1252
public static final CharacterSetMode WINDOWS_1254
public static final CharacterSetMode WINDOWS_1256
public static CharacterSetMode[] values()
for (CharacterSetMode c : CharacterSetMode.values()) System.out.println(c);
public static CharacterSetMode 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