public static enum ScannerConfig.PicklistEx extends java.lang.Enum<ScannerConfig.PicklistEx>
Example Usage: PicklistEx.DISABLED;
| Enum Constant and Description |
|---|
DISABLED
Disables Picklist mode.
|
HARDWARE
Enables the HARDWARE Picklist mode so that only the barcode that is directly
under the cross-hair or center of reticle is decoded.
|
SOFTWARE
Enables the SOFTWARE Picklist mode so that only the barcode that is directly
under the cross-hair or center of reticle is decoded.
|
| Modifier and Type | Method and Description |
|---|---|
static ScannerConfig.PicklistEx |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScannerConfig.PicklistEx[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScannerConfig.PicklistEx DISABLED
public static final ScannerConfig.PicklistEx HARDWARE
public static final ScannerConfig.PicklistEx SOFTWARE
public static ScannerConfig.PicklistEx[] values()
for (ScannerConfig.PicklistEx c : ScannerConfig.PicklistEx.values()) System.out.println(c);
public static ScannerConfig.PicklistEx 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