public static enum ScannerConfig.PresentationModeSensitivity extends java.lang.Enum<ScannerConfig.PresentationModeSensitivity>
Example Usage: PresentationModeSensitivity.HIGH;
| Enum Constant and Description | 
|---|
HIGH
Scanning is activated with a high sensitivity to the environment changes while AimType is in Presentation Mode 
 | 
LOW
Scanning is activated with a low sensitivity to the environment changes while AimType is in Presentation Mode 
 | 
MEDIUM
Scanning is activated with a medium sensitivity to the environment changes while AimType is in Presentation Mode 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ScannerConfig.PresentationModeSensitivity | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static ScannerConfig.PresentationModeSensitivity[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ScannerConfig.PresentationModeSensitivity LOW
public static final ScannerConfig.PresentationModeSensitivity MEDIUM
public static final ScannerConfig.PresentationModeSensitivity HIGH
public static ScannerConfig.PresentationModeSensitivity[] values()
for (ScannerConfig.PresentationModeSensitivity c : ScannerConfig.PresentationModeSensitivity.values()) System.out.println(c);
public static ScannerConfig.PresentationModeSensitivity 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