| AssertFalse |
The annotated element must be false.
|
| AssertTrue |
The annotated element must be true.
|
| DecimalMax |
The annotated element must be a number whose value must be lower or
equal to the specified maximum.
|
| DecimalMin |
The annotated element must be a number whose value must be higher or
equal to the specified minimum.
|
| Digits |
The annotated element must be a number within accepted range
Supported types are:
BigDecimal
BigInteger
CharSequence
byte, short, int, long, and their respective
wrapper types
|
| Future |
The annotated element must be a date in the future.
|
| Max |
The annotated element must be a number whose value must be lower or
equal to the specified maximum.
|
| Min |
The annotated element must be a number whose value must be higher or
equal to the specified minimum.
|
| NotNull |
The annotated element must not be null.
|
| Null |
The annotated element must be null.
|
| Past |
The annotated element must be a date in the past.
|
| Pattern |
The annotated CharSequence must match the specified regular expression.
|
| Pattern.Flag |
Possible Regexp flags.
|
| Size |
The annotated element size must be between the specified boundaries (included).
|