|
Annotation Types Summary |
| BetweenLength |
Checks if annotated method returns a value where the length
is between the length of this annotation. |
| BetweenLengths |
Allows you to specify multiple betweenlength annotation checks. |
| CollectionSize |
This annotation can be used for size checks on java.util.Collection or
java.util.Map related classes (e.g a list, map, tree ..), can be specified on get methods
and fields. |
| CollectionSizes |
Allows you to specify multiple collectionsize annotation checks. |
| DateCheck |
Checks if annotated method/field returns a value that applies
to this date constraint. |
| DateChecks |
Allows you to specify multiple DateCheck annotation checks. |
| LovConstraint |
Checks if annotated method returns a value that is either 'in' or 'not in'
the Lov (List Of Values). |
| LovConstraints |
Allows you to specify multiple LovConstraint annotation checks. |
| MaxLength |
Checks if annotated method returns a value where the length
is less than length of this annotation. |
| MaxLengths |
Allows you to specify multiple MaxLength annotation checks. |
| MaxValue |
Checks if annotated method returns a value with no
more than the maximum value. |
| MaxValues |
Allows you to specify multiple MaxValue annotation checks. |
| MinLength |
Checks if annotated method return a value that has
the minimum annotated length. |
| MinLengths |
Allows you to specify multiple MinLength annotation checks. |
| MinValue |
Checks if annotated method returns a value with given
minimum value. |
| MinValues |
Allows you to specify multiple MinValue annotation checks. |
| NotEmpty |
Checks if given getXXX method returns an empty String. |
| NotNull |
Checks if given getXXX method returns a non-null value. |
| RegularExpression |
Checks if annotated method returns a value conform a regular expression. |
| RegularExpressions |
Allows you to specify multiple RegularExpression annotation checks. |
| ValidateList |
Annotate a method returning a java.util.List, where
the elements in the list require validation. |
| ValidateLists |
Allows you to specify multiple ValidateList annotation checks. |
| ValidateMap |
Annotate a method returning a java.util.Map, where
the elements in the map require validation. |
| ValidateMaps |
Allows you to specify multiple ValidateMap annotation checks. |