protected static enum Adjustment.NoOpPostProcessor extends Enum<Adjustment.NoOpPostProcessor> implements Action<Task>
| Enum Constant and Description |
|---|
INSTANCE
The singleton instance.
|
| Modifier and Type | Method and Description |
|---|---|
void |
execute(Task task) |
static Adjustment.NoOpPostProcessor |
valueOf(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(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