|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ConstraintOrigin>
org.hibernate.validator.metadata.ConstraintOrigin
public enum ConstraintOrigin
Visibility looked at when discovering constraints.
Enum Constant Summary | |
---|---|
DEFINED_IN_HIERARCHY
Constraint is defined in a super-class or interface of the root class. |
|
DEFINED_LOCALLY
Constraint is defined on the root class |
Method Summary | |
---|---|
static ConstraintOrigin |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ConstraintOrigin[] |
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 ConstraintOrigin DEFINED_LOCALLY
public static final ConstraintOrigin DEFINED_IN_HIERARCHY
Method Detail |
---|
public static ConstraintOrigin[] values()
for (ConstraintOrigin c : ConstraintOrigin.values()) System.out.println(c);
public static ConstraintOrigin 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 |