public enum Advice extends java.lang.Enum<Advice>
Advice.ABORT to abort the execution flow.
Advice.STOP signaling the end of the execution.
Advice.CONTINUE to continue the execution.
| Enum Constant and Description |
|---|
ABORT
Abort Execution *.
|
CONTINUE
Continue Execution *.
|
STOP
Successful termination of Execution *.
|
| Modifier and Type | Method and Description |
|---|---|
static Advice |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Advice[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Advice ABORT
public static final Advice CONTINUE
public static final Advice STOP
public static Advice[] values()
for (Advice c : Advice.values()) System.out.println(c);
public static Advice 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