public static enum ScannerConfig.SceneDetectionQualifier extends java.lang.Enum<ScannerConfig.SceneDetectionQualifier>
Example Usage: SceneDetectionQualifier.PROXIMITY_SENSOR_INPUT;
| Enum Constant and Description | 
|---|
NONE
Scene detection starts immediately after scanner read submission. 
 | 
PROXIMITY_SENSOR_INPUT
Scene detection is started upon the assertion received from proximity sensor. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ScannerConfig.SceneDetectionQualifier | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static ScannerConfig.SceneDetectionQualifier[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ScannerConfig.SceneDetectionQualifier NONE
public static final ScannerConfig.SceneDetectionQualifier PROXIMITY_SENSOR_INPUT
public static ScannerConfig.SceneDetectionQualifier[] values()
for (ScannerConfig.SceneDetectionQualifier c : ScannerConfig.SceneDetectionQualifier.values()) System.out.println(c);
public static ScannerConfig.SceneDetectionQualifier 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