public static enum Invoke.WHEN extends Enum<Invoke.WHEN>
| Enum Constant and Description |
|---|
all |
at_end |
never |
on_error |
on_success |
start |
| Modifier and Type | Method and Description |
|---|---|
static Invoke.WHEN |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Invoke.WHEN[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Invoke.WHEN never
public static final Invoke.WHEN start
public static final Invoke.WHEN on_success
public static final Invoke.WHEN on_error
public static final Invoke.WHEN at_end
public static final Invoke.WHEN all
public static Invoke.WHEN[] values()
for (Invoke.WHEN c : Invoke.WHEN.values()) System.out.println(c);
public static Invoke.WHEN 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