public static enum ProvisionException.ErrorType extends java.lang.Enum<ProvisionException.ErrorType>
Enum Constant and Description |
---|
ADB_FAILURE |
ARCH_NOT_SUPPORTED |
CANCELLED |
DEVICE_NOT_SUPPORTED |
INSTALL_FAILED |
INVALID_SDK |
NO_GOOGLE_ACCOUNT |
SHELL_TIMEOUT |
UNINSTALL_FAILED |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static ProvisionException.ErrorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProvisionException.ErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProvisionException.ErrorType ARCH_NOT_SUPPORTED
public static final ProvisionException.ErrorType DEVICE_NOT_SUPPORTED
public static final ProvisionException.ErrorType NO_GOOGLE_ACCOUNT
public static final ProvisionException.ErrorType SHELL_TIMEOUT
public static final ProvisionException.ErrorType ADB_FAILURE
public static final ProvisionException.ErrorType INVALID_SDK
public static final ProvisionException.ErrorType INSTALL_FAILED
public static final ProvisionException.ErrorType UNINSTALL_FAILED
public static final ProvisionException.ErrorType CANCELLED
public static final ProvisionException.ErrorType UNKNOWN
public static ProvisionException.ErrorType[] values()
for (ProvisionException.ErrorType c : ProvisionException.ErrorType.values()) System.out.println(c);
public static ProvisionException.ErrorType 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