public static enum AbstractShrinker.CounterSet extends java.lang.Enum<AbstractShrinker.CounterSet>
| Enum Constant and Description |
|---|
LEGACY_MULTIDEX
Counters for finding classes that have to be in the main classes.dex file.
|
SHRINK
Counters for removing dead code.
|
| Modifier and Type | Method and Description |
|---|---|
static AbstractShrinker.CounterSet |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractShrinker.CounterSet[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractShrinker.CounterSet SHRINK
public static final AbstractShrinker.CounterSet LEGACY_MULTIDEX
public static AbstractShrinker.CounterSet[] values()
for (AbstractShrinker.CounterSet c : AbstractShrinker.CounterSet.values()) System.out.println(c);
public static AbstractShrinker.CounterSet 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