public static enum Actions.ActionType extends java.lang.Enum<Actions.ActionType>
| Enum Constant and Description |
|---|
ADDED
The element was added into the resulting merged manifest.
|
IMPLIED
The implied element was added was added when importing a library that expected the
element to be present by default while targeted SDK requires its declaration.
|
INJECTED
The element was injected from the merger invocation parameters.
|
MERGED
The element was merged with another element into the resulting merged manifest.
|
REJECTED
The element was rejected.
|
| Modifier and Type | Method and Description |
|---|---|
static Actions.ActionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Actions.ActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Actions.ActionType ADDED
public static final Actions.ActionType INJECTED
public static final Actions.ActionType MERGED
public static final Actions.ActionType REJECTED
public static final Actions.ActionType IMPLIED
public static Actions.ActionType[] values()
for (Actions.ActionType c : Actions.ActionType.values()) System.out.println(c);
public static Actions.ActionType 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