public static enum Printer.BarcodeType extends java.lang.Enum<Printer.BarcodeType>
| Enum Constant and Description |
|---|
CODABAR_NW_7 |
CODE128 |
CODE39 |
CODE93 |
ITF_Interleaved_2_of_5 |
JAN13_EAN13 |
JAN8_EAN8 |
UCC_EAN128 |
UPC_A |
UPC_E |
| Modifier and Type | Method and Description |
|---|---|
static Printer.BarcodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Printer.BarcodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Printer.BarcodeType UPC_A
public static final Printer.BarcodeType UPC_E
public static final Printer.BarcodeType JAN13_EAN13
public static final Printer.BarcodeType JAN8_EAN8
public static final Printer.BarcodeType CODE39
public static final Printer.BarcodeType ITF_Interleaved_2_of_5
public static final Printer.BarcodeType CODABAR_NW_7
public static final Printer.BarcodeType CODE93
public static final Printer.BarcodeType CODE128
public static final Printer.BarcodeType UCC_EAN128
public static Printer.BarcodeType[] values()
for (Printer.BarcodeType c : Printer.BarcodeType.values()) System.out.println(c);
public static Printer.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