public static enum IntentEvent.Type extends Enum<IntentEvent.Type>
| Enum Constant and Description |
|---|
FAILED
Signifies that an intent has failed compilation or installation.
|
INSTALL_REQ
Signifies that an intent is to be installed or reinstalled.
|
INSTALLED
Signifies that an intent has been successfully installed.
|
WITHDRAW_REQ
Signifies that an intent will be withdrawn.
|
WITHDRAWN
Signifies that an intent has been withdrawn from the system.
|
| Modifier and Type | Method and Description |
|---|---|
static IntentEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntentEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntentEvent.Type INSTALL_REQ
public static final IntentEvent.Type INSTALLED
public static final IntentEvent.Type FAILED
public static final IntentEvent.Type WITHDRAW_REQ
public static final IntentEvent.Type WITHDRAWN
public static IntentEvent.Type[] values()
for (IntentEvent.Type c : IntentEvent.Type.values()) System.out.println(c);
public static IntentEvent.Type 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 nullCopyright © 2015. All rights reserved.