| Class | Description |
|---|---|
| AssertFalseValidator |
Description: assert that value is false
|
| AssertTrueValidator |
Description: assert that value is true
|
| DecimalMaxValidatorForNumber |
Description: validate that number-value of passed object is <= maxvalue
|
| DecimalMaxValidatorForString |
Check that the String being validated represents a number, and has a value
<= maxvalue
|
| DecimalMinValidatorForNumber |
Description: validate that number-value of passed object is >= minvalue
|
| DecimalMinValidatorForString |
Description:
Check that the String being validated represents a number, and has a value
>= minvalue
|
| DigitsValidatorForNumber |
Validates that the
Number being validates matches the pattern
defined in the constraint. |
| DigitsValidatorForString |
Validates that the
String being validated consists of digits,
and matches the pattern defined in the constraint. |
| EmailValidator |
Description:
|
| FutureValidatorForCalendar |
Description: validate a date or calendar representing a date in the future
|
| FutureValidatorForDate |
Description: validate a date or calendar representing a date in the future
|
| MaxValidatorForNumber |
Check that the number being validated is less than or equal to the maximum
value specified.
|
| MaxValidatorForString |
Check that the String being validated represents a number, and has a value
less than or equal to the maximum value specified.
|
| MinValidatorForNumber |
Description: validate that number-value of passed object is >= min-value
|
| MinValidatorForString |
Check that the String being validated represents a number, and has a value
more than or equal to the minimum value specified.
|
| NotEmptyValidator |
Description: Check the non emptyness of an
any object that has a public isEmpty():boolean or a valid toString() method
|
| NotEmptyValidatorForCollection |
Description:
|
| NotEmptyValidatorForMap |
Description:
|
| NotEmptyValidatorForString |
Description:
|
| NotNullValidator |
valid when object is NOT null
|
| NullValidator |
Description: valid when object is null
|
| PastValidatorForCalendar |
Description: validate a date or calendar representing a date in the past
|
| PastValidatorForDate |
Description: validate a date or calendar representing a date in the past
|
| PatternValidator |
validator using a regular expression,
based on the jsr Pattern constraint annotation.
|
| SizeValidator |
Description: Abstract validator impl.
|
| SizeValidatorForArrayOfBoolean | |
| SizeValidatorForArrayOfByte | |
| SizeValidatorForArrayOfChar | |
| SizeValidatorForArrayOfDouble | |
| SizeValidatorForArrayOfFloat | |
| SizeValidatorForArrayOfInt | |
| SizeValidatorForArrayOfLong | |
| SizeValidatorForArrayOfObject |
Check that the length of an array is between min and max
|
| SizeValidatorForArrayOfShort | |
| SizeValidatorForCharSequence |
Check that a string's length is between min and max.
|
| SizeValidatorForCollection |
Check that a Collection's size is between min and max.
|
| SizeValidatorForMap |
Check that a Map's size is between min and max.
|
| Annotation Type | Description |
|---|---|
|
--
TODO - This class is NOT part of the bean_validation spec and might disappear
as soon as a final version of the specification contains a similar functionality.
|
|
| NotEmpty |
This class is NOT part of the bean_validation spec and might disappear
as soon as a final version of the specification contains a similar functionality.
|
Copyright © 2010–2022 The Apache Software Foundation. All rights reserved.