@Deprecated public static enum ProfileConfig.PICK_LIST extends Enum<ProfileConfig.PICK_LIST>
Example Usage: PICK_LIST.DEFAULT;
| Enum Constant and Description | 
|---|
CENTERED
Deprecated.  
 | 
DEFAULT
Deprecated.  
Default pick list configured on device 
 | 
DISABLED
Deprecated.  
Disables Picklist mode. 
 | 
ENABLED
Deprecated.  
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 ProfileConfig.PICK_LIST | 
valueOf(String name)
Deprecated.  
Returns the enum constant of this type with the specified name. 
 | 
static ProfileConfig.PICK_LIST[] | 
values()
Deprecated.  
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ProfileConfig.PICK_LIST DEFAULT
public static final ProfileConfig.PICK_LIST DISABLED
public static final ProfileConfig.PICK_LIST ENABLED
@Deprecated public static final ProfileConfig.PICK_LIST CENTERED
public static ProfileConfig.PICK_LIST[] values()
for (ProfileConfig.PICK_LIST c : ProfileConfig.PICK_LIST.values()) System.out.println(c);
public static ProfileConfig.PICK_LIST 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