public static enum AndroidBoot.BootAction extends Enum<AndroidBoot.BootAction>
Enum Constant and Description |
---|
CREATE_APK_CONTEXT
Crate an instance of android.app.ContextImpl for the apk.
|
CREATE_SYSTEM_CONTEXT
Create an instance of android.app.ContextImpl for the system.
|
Modifier and Type | Method and Description |
---|---|
static AndroidBoot.BootAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AndroidBoot.BootAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AndroidBoot.BootAction CREATE_SYSTEM_CONTEXT
public static final AndroidBoot.BootAction CREATE_APK_CONTEXT
public static AndroidBoot.BootAction[] values()
for (AndroidBoot.BootAction c : AndroidBoot.BootAction.values()) System.out.println(c);
public static AndroidBoot.BootAction valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null