public static enum EvaluationListener.EvaluationContinuation extends Enum<EvaluationListener.EvaluationContinuation>
Enum Constant and Description |
---|
ABORT
Current result is included but no further evaluation will be performed.
|
CONTINUE
Evaluation continues
|
Modifier and Type | Method and Description |
---|---|
static EvaluationListener.EvaluationContinuation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EvaluationListener.EvaluationContinuation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvaluationListener.EvaluationContinuation CONTINUE
public static final EvaluationListener.EvaluationContinuation ABORT
public static EvaluationListener.EvaluationContinuation[] values()
for (EvaluationListener.EvaluationContinuation c : EvaluationListener.EvaluationContinuation.values()) System.out.println(c);
public static EvaluationListener.EvaluationContinuation 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 nullCopyright © 2019. All rights reserved.