public static enum IntentEvent.Type extends java.lang.Enum<IntentEvent.Type>
Enum Constant and Description |
---|
CORRUPT
Signifies that an intent has failed installation or withdrawal, but
still hold some or all of its resources.
|
FAILED
Signifies that an intent has failed compilation and that it cannot
be satisfied by the network at this time.
|
INSTALL_REQ
Signifies that an intent is to be installed or reinstalled.
|
INSTALLED
Signifies that an intent has been successfully installed.
|
PURGED
Signifies that an intent has been purged from the system.
|
REALLOCATING
Signifies that an intent is being reallocated.
|
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(java.lang.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 final IntentEvent.Type CORRUPT
public static final IntentEvent.Type PURGED
public static final IntentEvent.Type REALLOCATING
public static IntentEvent.Type[] values()
for (IntentEvent.Type c : IntentEvent.Type.values()) System.out.println(c);
public static IntentEvent.Type 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