AssertFalse |
Verify that the annotated element is either
false , Boolean.FALSE or null .
|
AssertFalse.List |
|
AssertTrue |
Verify that the annotated element is either
true , Boolean.TRUE or null .
|
AssertTrue.List |
|
DecimalMax |
Verify that the annotated element has a number which is
lower or equal than the given value or is null .
|
DecimalMax.List |
|
DecimalMin |
Verify that the annotated element has a number which is
higher or equal than the given value or is null .
|
DecimalMin.List |
|
Digits |
Specify the number of maximal allowed digits for the fraction part and the digit size.
|
Digits.List |
|
Future |
Verify that the annotated value of the annotated element is in the future or null .
|
Future.List |
|
Max |
Verify that the annotated element has a number which is
lower or equal than the given value or is null .
|
Max.List |
|
Min |
Verify that the annotated element has a number which is
higher or equal than the given value or is null .
|
Min.List |
|
NotNull |
Constraint to verify that the validated field, parameter, etc is not null .
|
NotNull.List |
|
Null |
Constraint to verify that the validated field, parameter, etc is null .
|
Null.List |
|
Past |
Verify that the annotated value of the annotated element is in the past or null .
|
Past.List |
|
Pattern |
Constraint to verify that the validated field, parameter, etc matches the given regexp pattern.
|
Pattern.List |
|
Size |
Verify that size of the annotated element is higher or equals the min value
and lower or equals the max value or whether the annotated element is null .
|
Size.List |
|