public static enum AndroidBoot.BootAction extends java.lang.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(java.lang.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(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