public static enum ProguardFiles.ProguardFile extends java.lang.Enum<ProguardFiles.ProguardFile>
| Enum Constant and Description |
|---|
DONT_OPTIMIZE
Default when not using the "postprocessing" DSL block.
|
NO_ACTIONS
Does not disable any actions, includes optimizations config.
|
OPTIMIZE
Variant of the above which does not disable optimizations.
|
| Modifier and Type | Field and Description |
|---|---|
java.lang.String |
fileName |
| Modifier and Type | Method and Description |
|---|---|
static ProguardFiles.ProguardFile |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProguardFiles.ProguardFile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProguardFiles.ProguardFile DONT_OPTIMIZE
public static final ProguardFiles.ProguardFile OPTIMIZE
public static final ProguardFiles.ProguardFile NO_ACTIONS
public static ProguardFiles.ProguardFile[] values()
for (ProguardFiles.ProguardFile c : ProguardFiles.ProguardFile.values()) System.out.println(c);
public static ProguardFiles.ProguardFile 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