public static enum ScannerConfig.PickList extends Enum<ScannerConfig.PickList>
Example Usage: PickList.DISABLED;
| Enum Constant and Description | 
|---|
DISABLED
Disables Picklist mode. 
 | 
ENABLED
Enables the Picklist mode so that only the bar code that is directly
 under the cross-hair (reticle) is decoded. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ScannerConfig.PickList | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ScannerConfig.PickList[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ScannerConfig.PickList DISABLED
public static final ScannerConfig.PickList ENABLED
public static ScannerConfig.PickList[] values()
for (ScannerConfig.PickList c : ScannerConfig.PickList.values()) System.out.println(c);
public static ScannerConfig.PickList valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null