| Class | Description |
|---|---|
| BaseValidator |
This class provides static methods to obtain configured
Validator instances. |
| ConstraintViolations |
This class provides static methods to work with constraint violations.
|
| InjectValidatorFeature | |
| InterpolationHelper |
Utilities used for message interpolation.
|
| MaxDataSizeValidator |
Check that a
DataSize being validated is less than or equal to the
minimum value specified. |
| MaxDurationValidator |
Check that a
Duration being validated is less than or equal to the
minimum value specified. |
| MaxSizeValidator | Deprecated
Use
MaxDataSizeValidator for correct SI and IEC prefixes. |
| MethodValidator |
A validator for
ValidationMethod-annotated methods. |
| MinDataSizeValidator |
Check that a
DataSize being validated is greater than or equal to the
minimum value specified. |
| MinDurationValidator |
Check that a
Duration being validated is greater than or equal to the
minimum value specified. |
| MinSizeValidator | Deprecated
Use
MinDataSizeValidator for correct SI and IEC prefixes. |
| OneOfValidator |
Check that the string representation of an object is in a given set of valid values.
|
| PortRangeValidator |
Allow 0 to indicate dynamic port range allocation.
|
| Annotation Type | Description |
|---|---|
| DataSizeRange |
The annotated element has to be in the appropriate range.
|
| DataSizeRange.List |
Defines several
@DataSizeRange annotations on the same element. |
| DurationRange |
The annotated element has to be in the appropriate range.
|
| DurationRange.List |
Defines several
@DurationRange annotations on the same element. |
| MaxDataSize |
The annotated element must be a
DataSize
whose value must be less than or equal to the specified maximum. |
| MaxDuration |
The annotated element must be a
Duration
whose value must be higher or equal to the specified minimum. |
| MaxSize | Deprecated
Use
MaxDataSize for correct SI and IEC prefixes. |
| MinDataSize |
The annotated element must be a
DataSize
whose value must be higher or equal to the specified minimum. |
| MinDuration |
The annotated element must be a
Duration
whose value must be higher or equal to the specified minimum. |
| MinSize | Deprecated
Use
MinDataSize for correct SI and IEC prefixes. |
| OneOf |
Checks to see that the value is one of a set of elements.
|
| PortRange |
A constraint that allows one to specify a port range, but still allow 0 as the port value to
indicate dynamically allocated ports.
|
| SizeRange | Deprecated
Use
DataSizeRange for correct SI and IEC prefixes. |
| SizeRange.List |
Defines several
@SizeRange annotations on the same element. |
| Validated |
Due to limit of @see javax.validation.Valid Annotation for validation groups and ordered validations,
this annotation is serving supplementary purposes to validation process.
|
| ValidationMethod |
Validates a bean predicate method as returning true.
|
Copyright © 2011. All rights reserved.