public enum BarcodeType extends java.lang.Enum<BarcodeType>
| Enum Constant and Description |
|---|
Codabar
Summary:
Codabar uses A B C D + - : , / and numbers.
|
Code128
Code 128 uses the complete ASCII character set.
|
Code39
Summary:
Code 39 uses numbers, % * $ /.
|
Code49
Code 49 is a 2D high-density stacked barcode.
|
Code93
Summary:
Code 93 uses uppercase, % $ * / , + -, and numbers.
|
DataMatrix
Summary:
Data Matrix is a high density, two-dimensional barcode with square modules arranged
in a square or rectangular matrix pattern.
|
EAN13
Summary:
EAN-13 uses only numbers (12 numbers and a check digit).
|
EAN8
Summary:
EAN-8 uses only numbers (7 numbers and a check digit).
|
GS1_128
Summary:
uses the complete ASCII character Set.
|
PDF417
Summary:
Pdf417 is a popular high-density 2-dimensional symbology that encodes up to 1108
bytes of information.
|
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.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
SIZE |
| Modifier and Type | Method and Description |
|---|---|
static BarcodeType |
forValue(int value) |
int |
getValue() |
static BarcodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BarcodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BarcodeType QRCode
public static final BarcodeType DataMatrix
public static final BarcodeType PDF417
public static final BarcodeType EAN8
public static final BarcodeType EAN13
public static final BarcodeType Code39
public static final BarcodeType Code93
public static final BarcodeType Code49
public static final BarcodeType Code128
public static final BarcodeType Codabar
public static final BarcodeType GS1_128
public static final int SIZE
public static BarcodeType[] values()
for (BarcodeType c : BarcodeType.values()) System.out.println(c);
public static BarcodeType 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 nullpublic int getValue()
public static BarcodeType forValue(int value)