Package com.nefrock.edgeocr
Enum Class Encoding
- All Implemented Interfaces:
Serializable
,Comparable<Encoding>
,Constable
文字列のエンコーディングを表す列挙型
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionASCIIBig5 エンコーディングエンコーディングなし(バイナリデータ)Windows-1250、中欧で使用されるエンコーディングWindows-1251、キリル文字用のエンコーディングWindows-1252、北米・南米・西欧・オセアニア・アフリカで使用されるエンコーディングWindows-1256、アラビア文字用のエンコーディングIBM PC で使用されるエンコーディングEUC-JP エンコーディングEUC-KR エンコーディングGB18030 エンコーディングGB2312 エンコーディングラテン文字(Latin-1 西欧)ラテン文字(Latin-6 北欧)ラテン文字とタイ文字(Latin タイ文字)ラテン文字(Latin-7 バルト海)ラテン文字(Latin-8 ケルト)ラテン文字(Latin-9)ラテン文字(Latin-9 南西欧)ラテン文字(Latin-2 中欧)ラテン文字(Latin-3 南欧)ラテン文字(Latin-4 北欧)ラテン文字とキリル文字(Latin キリル文字)ラテン文字とアラビア文字(Latin アラビア文字)ラテン文字とギリシャ文字(Latin ギリシャ文字)ラテン文字とヘブライ文字(Latin ヘブライ文字)ラテン文字(Latin-5 トルコ)Shift-JIS エンコーディング不明なエンコーディング、またはエンコーディングが使用されていないUTF-16 ビッグエンディアンエンコーディングUTF-16 リトルエンディアンエンコーディングUTF-32 ビッグエンディアンエンコーディングUTF-32 リトルエンディアンエンコーディングUTF-8 エンコーディング -
Method Summary
Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
Unknown
不明なエンコーディング、またはエンコーディングが使用されていない -
ASCII
ASCII -
ISO8859_1
ラテン文字(Latin-1 西欧) -
ISO8859_2
ラテン文字(Latin-2 中欧) -
ISO8859_3
ラテン文字(Latin-3 南欧) -
ISO8859_4
ラテン文字(Latin-4 北欧) -
ISO8859_5
ラテン文字とキリル文字(Latin キリル文字) -
ISO8859_6
ラテン文字とアラビア文字(Latin アラビア文字) -
ISO8859_7
ラテン文字とギリシャ文字(Latin ギリシャ文字) -
ISO8859_8
ラテン文字とヘブライ文字(Latin ヘブライ文字) -
ISO8859_9
ラテン文字(Latin-5 トルコ) -
ISO8859_10
ラテン文字(Latin-6 北欧) -
ISO8859_11
ラテン文字とタイ文字(Latin タイ文字) -
ISO8859_13
ラテン文字(Latin-7 バルト海) -
ISO8859_14
ラテン文字(Latin-8 ケルト) -
ISO8859_15
ラテン文字(Latin-9) -
ISO8859_16
ラテン文字(Latin-9 南西欧) -
Cp437
IBM PC で使用されるエンコーディング -
Cp1250
Windows-1250、中欧で使用されるエンコーディング -
Cp1251
Windows-1251、キリル文字用のエンコーディング -
Cp1252
Windows-1252、北米・南米・西欧・オセアニア・アフリカで使用されるエンコーディング -
Cp1256
Windows-1256、アラビア文字用のエンコーディング -
Shift_JIS
Shift-JIS エンコーディング -
Big5
Big5 エンコーディング -
GB2312
GB2312 エンコーディング -
GB18030
GB18030 エンコーディング -
EUC_JP
EUC-JP エンコーディング -
EUC_KR
EUC-KR エンコーディング -
UTF16BE
UTF-16 ビッグエンディアンエンコーディング -
UTF8
UTF-8 エンコーディング -
UTF16LE
UTF-16 リトルエンディアンエンコーディング -
UTF32BE
UTF-32 ビッグエンディアンエンコーディング -
UTF32LE
UTF-32 リトルエンディアンエンコーディング -
BINARY
エンコーディングなし(バイナリデータ)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getCharset
- Returns:
- エンコーディングに対応する
Charset
オブジェクト
-