public static enum ScannerConfig.NGSimulScanMode extends java.lang.Enum<ScannerConfig.NGSimulScanMode>
Example Usage: NGSimulScanMode.MULTI_BARCODE;
| Enum Constant and Description | 
|---|
MULTI_BARCODE
Decode multiple barcodes at a time. 
 | 
NONE
Decode only a single barcode at a time. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ScannerConfig.NGSimulScanMode | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static ScannerConfig.NGSimulScanMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ScannerConfig.NGSimulScanMode NONE
public static final ScannerConfig.NGSimulScanMode MULTI_BARCODE
public static ScannerConfig.NGSimulScanMode[] values()
for (ScannerConfig.NGSimulScanMode c : ScannerConfig.NGSimulScanMode.values()) System.out.println(c);
public static ScannerConfig.NGSimulScanMode 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