Enum Class BarcodeType
- 所有已实现的接口:
Serializable
,Comparable<BarcodeType>
,Constable
-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
枚举常量概要
枚举常量说明Summary: Codabar uses A B C D + - : , / and numbers.Code 128 uses the complete ASCII character set.Summary: Code 39 uses numbers, % * $ /. , - +, and upper case.Code 49 is a 2D high-density stacked barcode.Summary: Code 93 uses uppercase, % $ * / , + -, and numbers.Summary: Data Matrix is a high density, two-dimensional barcode with square modules arranged in a square or rectangular matrix pattern.Summary: EAN-13 uses only numbers (12 numbers and a check digit).Summary: EAN-8 uses only numbers (7 numbers and a check digit).Summary: uses the complete ASCII character Set.Summary: Pdf417 is a popular high-density 2-dimensional symbology that encodes up to 1108 bytes of information.Summary: QRCode is a 2D symbology that is capable of handling numeric, alphanumeric and byte data as well as Japanese kanji and kana characters. -
方法概要
修饰符和类型方法说明static BarcodeType
forValue
(int value) int
getValue()
static BarcodeType
Returns the enum constant of this class with the specified name.static BarcodeType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
枚举常量详细资料
-
QRCode
Summary: QRCode is a 2D symbology that is capable of handling numeric, alphanumeric and byte data as well as Japanese kanji and kana characters. This symbology can encode up to 7,366 characters. -
DataMatrix
Summary: Data Matrix is a high density, two-dimensional barcode with square modules arranged in a square or rectangular matrix pattern. -
PDF417
Summary: Pdf417 is a popular high-density 2-dimensional symbology that encodes up to 1108 bytes of information. This barcode consists of a stacked set of smaller barcodes. Encodes the full ASCII character set. Capable of encoding as many as 2725 data characters. -
EAN8
Summary: EAN-8 uses only numbers (7 numbers and a check digit). -
EAN13
Summary: EAN-13 uses only numbers (12 numbers and a check digit). If there are only 12 numbers in the string, it calculates a checksum and adds it to the thirteenth position. If there are 13, it validates the checksum and throws an error if it is incorrect. -
Code39
Summary: Code 39 uses numbers, % * $ /. , - +, and upper case. -
Code93
Summary: Code 93 uses uppercase, % $ * / , + -, and numbers. -
Code49
Code 49 is a 2D high-density stacked barcode. Encodes the complete ASCII character set. -
Code128
Code 128 uses the complete ASCII character set. Automatically selects between Code 128 A, B and C to give the smallest barcode. -
Codabar
Summary: Codabar uses A B C D + - : , / and numbers. -
GS1_128
Summary: uses the complete ASCII character Set. This is a special version of Code 128 used in HIBC applications.
-
-
方法详细资料
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- 返回:
- 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.)- 参数:
name
- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- 如果参数为空值
-
getValue
public int getValue() -
forValue
-