ScannerConfig.PicklistEx.
 Allows the imager to decode only the barcode that is directly under the
 cross-hair/reticle (+) part of the pattern. This feature is useful in
 applications where multiple barcodes may appear in the field of view
 during a decode session and only one of them is targeted for decode.
 
 Note: Selecting the picklist may adversely affect overall decoding performance.
 
 
Example Usage: PickList.DISABLED;
@Deprecated public static enum ScannerConfig.PickList extends java.lang.Enum<ScannerConfig.PickList>
| Enum Constant and Description | 
|---|
DISABLED
Deprecated. 
 
Disables Picklist mode. Any barcode within the field of view can be
 decoded. 
 | 
ENABLED
Deprecated. 
 
Enables the HARDWARE Picklist mode so that only the barcode that is directly
 under the cross-hair (reticle) is decoded. This is useful when used
 in conjunction with the static and dynamic reticle viewfinder modes.
 (Scan Module Only) 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ScannerConfig.PickList | 
valueOf(java.lang.String name)
Deprecated.  
Returns the enum constant of this type with the specified name. 
 | 
static ScannerConfig.PickList[] | 
values()
Deprecated.  
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
@Deprecated public static final ScannerConfig.PickList DISABLED
@Deprecated 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(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