public static enum ScannerConfig.PairAfterScannerReboot extends java.lang.Enum<ScannerConfig.PairAfterScannerReboot>
Example Usage: PairAfterScannerReboot.ENABLE;
| Enum Constant and Description | 
|---|
DISABLE
Don't keep paring Info after bluetooth scanner reboot. 
 | 
ENABLE
Keep pairing info after bluetooth scanner reboot. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ScannerConfig.PairAfterScannerReboot | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static ScannerConfig.PairAfterScannerReboot[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ScannerConfig.PairAfterScannerReboot DISABLE
public static final ScannerConfig.PairAfterScannerReboot ENABLE
public static ScannerConfig.PairAfterScannerReboot[] values()
for (ScannerConfig.PairAfterScannerReboot c : ScannerConfig.PairAfterScannerReboot.values()) System.out.println(c);
public static ScannerConfig.PairAfterScannerReboot 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