public enum BarcodeScannerType extends java.lang.Enum<BarcodeScannerType>
BarcodeScannerType enumeration lists barcode scanner types.| Enum Constant and Description |
|---|
NONE
None
|
ONE_DIMENSIONAL_READER
Laser or 1D-ccd
|
TWO_DIMENSIONAL_READER
Imager or 2D
|
| Modifier and Type | Method and Description |
|---|---|
static BarcodeScannerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BarcodeScannerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BarcodeScannerType NONE
public static final BarcodeScannerType ONE_DIMENSIONAL_READER
public static final BarcodeScannerType TWO_DIMENSIONAL_READER
public static BarcodeScannerType[] values()
for (BarcodeScannerType c : BarcodeScannerType.values()) System.out.println(c);
public static BarcodeScannerType 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