public static enum IntentOperation.Type extends Enum<IntentOperation.Type>
| Enum Constant and Description | 
|---|
SUBMIT
Indicates that an intent should be added. 
 | 
WITHDRAW
Indicates that an intent should be removed. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static IntentOperation.Type | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static IntentOperation.Type[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final IntentOperation.Type SUBMIT
public static final IntentOperation.Type WITHDRAW
public static IntentOperation.Type[] values()
for (IntentOperation.Type c : IntentOperation.Type.values()) System.out.println(c);
public static IntentOperation.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 null