|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ConstraintHelper.ConstraintCheckResult>
org.hibernate.validator.ap.util.ConstraintHelper.ConstraintCheckResult
public static enum ConstraintHelper.ConstraintCheckResult
Possible results of a constraint check as returned by
ConstraintHelper.checkConstraint(DeclaredType, TypeMirror)
.
Enum Constant Summary | |
---|---|
ALLOWED
The checked constraint is allowed at the evaluated type. |
|
DISALLOWED
The checked constraint is not allowed at the evaluated type. |
|
MULTIPLE_VALIDATORS_FOUND
Multiple validators were found, that could validate the checked constrained at the evaluated type. |
Method Summary | |
---|---|
static ConstraintHelper.ConstraintCheckResult |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ConstraintHelper.ConstraintCheckResult[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ConstraintHelper.ConstraintCheckResult ALLOWED
public static final ConstraintHelper.ConstraintCheckResult DISALLOWED
public static final ConstraintHelper.ConstraintCheckResult MULTIPLE_VALIDATORS_FOUND
Method Detail |
---|
public static ConstraintHelper.ConstraintCheckResult[] values()
for (ConstraintHelper.ConstraintCheckResult c : ConstraintHelper.ConstraintCheckResult.values()) System.out.println(c);
public static ConstraintHelper.ConstraintCheckResult valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |