public static enum IntentInstaller.Direction extends Enum<IntentInstaller.Direction>
| Enum Constant and Description | 
|---|
ADD
Direction for adding any installable objects(flows, configs...). 
 | 
REMOVE
Direction for removing any installable objects(flows, configs...). 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static IntentInstaller.Direction | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static IntentInstaller.Direction[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final IntentInstaller.Direction ADD
public static final IntentInstaller.Direction REMOVE
public static IntentInstaller.Direction[] values()
for (IntentInstaller.Direction c : IntentInstaller.Direction.values()) System.out.println(c);
public static IntentInstaller.Direction 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