protected static enum Adjustment.NoOpPostProcessor extends java.lang.Enum<Adjustment.NoOpPostProcessor> implements org.gradle.api.Action<org.gradle.api.Task>
| Enum Constant and Description |
|---|
INSTANCE
The singleton instance.
|
| Modifier and Type | Method and Description |
|---|---|
void |
execute(org.gradle.api.Task task) |
static Adjustment.NoOpPostProcessor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Adjustment.NoOpPostProcessor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Adjustment.NoOpPostProcessor INSTANCE
public static Adjustment.NoOpPostProcessor[] values()
for (Adjustment.NoOpPostProcessor c : Adjustment.NoOpPostProcessor.values()) System.out.println(c);
public static Adjustment.NoOpPostProcessor 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 nullpublic void execute(org.gradle.api.Task task)
execute in interface org.gradle.api.Action<org.gradle.api.Task>