public enum BarcodeType extends java.lang.Enum<BarcodeType>
| Enum Constant and Description |
|---|
AZTEC |
CODE128 |
CODE39 |
DATA_MATRIX |
EAN13 |
EAN8 |
ITF |
PDF417 |
QR |
UPCA |
UPCE |
| Modifier and Type | Method and Description |
|---|---|
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 AZTEC
public static final BarcodeType CODE128
public static final BarcodeType CODE39
public static final BarcodeType DATA_MATRIX
public static final BarcodeType EAN13
public static final BarcodeType EAN8
public static final BarcodeType ITF
public static final BarcodeType QR
public static final BarcodeType UPCA
public static final BarcodeType UPCE
public static final BarcodeType PDF417
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 null