| net.sf.oval.constraint.CheckWith
CheckWith | public @interface CheckWith(Code) | | Check the value by a method of the same class that takes the value as argument and returns true if valid
and false if invalid
author: Sebastian Thomschke |
errorCode | String errorCode(Code) | | error code passed to the ConstraintViolation object
|
ignoreIfNull | boolean ignoreIfNull(Code) | | this constraint will be ignored if the value to check is null
|
profiles | String[] profiles(Code) | | The associated validation profiles.
|
severity | int severity(Code) | | severity passed to the ConstraintViolation object
|
value | Class<? extends SimpleCheck> value(Code) | | Check class to use for validation. If this class is an inner class
it needs be declared as a static class. Otherwise
check instantiation will fail.
See Also: net.sf.oval.constraint.CheckWithCheck.SimpleCheck |
|
|