public static enum EvaluationResult.ConstraintEvaluationResult extends java.lang.Enum<EvaluationResult.ConstraintEvaluationResult>
| Enum Constant and Description |
|---|
FALSE
Signals that the constraint was evaluated to
false. |
TRUE
Signals that the constraint was evaluated to
true. |
UNKNOWN
Signals that the constraint cannot be evaluated at all.
|
| Modifier and Type | Method and Description |
|---|---|
static EvaluationResult.ConstraintEvaluationResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EvaluationResult.ConstraintEvaluationResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvaluationResult.ConstraintEvaluationResult TRUE
true.public static final EvaluationResult.ConstraintEvaluationResult FALSE
false.public static final EvaluationResult.ConstraintEvaluationResult UNKNOWN
public static EvaluationResult.ConstraintEvaluationResult[] values()
for (EvaluationResult.ConstraintEvaluationResult c : EvaluationResult.ConstraintEvaluationResult.values()) System.out.println(c);
public static EvaluationResult.ConstraintEvaluationResult 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 nullCopyright © 2009 - 2018 SSE. All Rights Reserved.