public enum BarcodeType extends java.lang.Enum<BarcodeType>
Enum Constant and Description |
---|
CODABAR |
CODE128 |
CODE39 |
CODE93 |
EAN13 |
EAN14 |
EAN8 |
GS1 |
ITF |
QR_CODE |
UPC_A |
UPC_E |
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 UPC_A
public static final BarcodeType UPC_E
public static final BarcodeType EAN13
public static final BarcodeType EAN14
public static final BarcodeType EAN8
public static final BarcodeType CODE39
public static final BarcodeType ITF
public static final BarcodeType CODABAR
public static final BarcodeType CODE93
public static final BarcodeType CODE128
public static final BarcodeType GS1
public static final BarcodeType QR_CODE
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