public static enum ScannerConfig.OneDQuietZoneLevel extends Enum<ScannerConfig.OneDQuietZoneLevel>
| Enum Constant and Description | 
|---|
LEVEL_0
The decoder will perform margin decoding as usual. 
 | 
LEVEL_1
The decoder will perform more aggressively. 
 | 
LEVEL_2
The decoder requires only one side end of barcode. 
 | 
LEVEL_3
The decoder can decode anything. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ScannerConfig.OneDQuietZoneLevel | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ScannerConfig.OneDQuietZoneLevel[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ScannerConfig.OneDQuietZoneLevel LEVEL_0
public static final ScannerConfig.OneDQuietZoneLevel LEVEL_1
public static final ScannerConfig.OneDQuietZoneLevel LEVEL_2
public static final ScannerConfig.OneDQuietZoneLevel LEVEL_3
public static ScannerConfig.OneDQuietZoneLevel[] values()
for (ScannerConfig.OneDQuietZoneLevel c : ScannerConfig.OneDQuietZoneLevel.values()) System.out.println(c);
public static ScannerConfig.OneDQuietZoneLevel 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