public static enum ScannerConfig.SecurityLevel extends Enum<ScannerConfig.SecurityLevel>
Example Usage: SecurityLevel.LEVEL_0;
| Enum Constant and Description | 
|---|
LEVEL_0
This setting allows the scanner to operate fastest, while providing. 
 | 
LEVEL_1
As bar code quality levels diminish, certain characters become prone
 to misdecodes before others (i.e., 1, 2, 7, 8). 
 | 
LEVEL_2
If the scanner is misdecoding poorly printed bar codes, and the
 misdecodes are not limited to characters 1, 2, 7, and 8, select this
 security level. 
 | 
LEVEL_3
If the scanner is still misdecoding, select this security level. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ScannerConfig.SecurityLevel | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ScannerConfig.SecurityLevel[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ScannerConfig.SecurityLevel LEVEL_0
public static final ScannerConfig.SecurityLevel LEVEL_1
public static final ScannerConfig.SecurityLevel LEVEL_2
public static final ScannerConfig.SecurityLevel LEVEL_3
public static ScannerConfig.SecurityLevel[] values()
for (ScannerConfig.SecurityLevel c : ScannerConfig.SecurityLevel.values()) System.out.println(c);
public static ScannerConfig.SecurityLevel 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