public static enum ScannerConfig.DpmModes extends java.lang.Enum<ScannerConfig.DpmModes>
Example Usage: DpmModes.MODE_1;
| Enum Constant and Description | 
|---|
DISABLED
No special processing occurs when DpmMode is Disabled. 
 | 
MODE_1
Optimized decoding performance on smaller DPM barcodes, typically found on electronics and medical instruments, especially on smooth surfaces. 
 | 
MODE_2
Optimized decoding performance on larger DPM barcodes, typically found on industrial parts especially on rough, grainy or visibly machined surface. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ScannerConfig.DpmModes | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static ScannerConfig.DpmModes[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ScannerConfig.DpmModes DISABLED
public static final ScannerConfig.DpmModes MODE_1
public static final ScannerConfig.DpmModes MODE_2
public static ScannerConfig.DpmModes[] values()
for (ScannerConfig.DpmModes c : ScannerConfig.DpmModes.values()) System.out.println(c);
public static ScannerConfig.DpmModes 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