public enum ScanWizardResult extends java.lang.Enum<ScanWizardResult>
| Enum Constant and Description |
|---|
WizardBluetoothUnavailable |
WizardButtonIsPrivate |
WizardCancelledByUser |
WizardFailedTimeout |
WizardInternetBackendError |
WizardInvalidData |
WizardSuccess |
| Modifier and Type | Method and Description |
|---|---|
static ScanWizardResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScanWizardResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScanWizardResult WizardSuccess
public static final ScanWizardResult WizardCancelledByUser
public static final ScanWizardResult WizardFailedTimeout
public static final ScanWizardResult WizardButtonIsPrivate
public static final ScanWizardResult WizardBluetoothUnavailable
public static final ScanWizardResult WizardInternetBackendError
public static final ScanWizardResult WizardInvalidData
public static ScanWizardResult[] values()
for (ScanWizardResult c : ScanWizardResult.values()) System.out.println(c);
public static ScanWizardResult 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