Package org.javalid.annotations.validation

Annotation Types Summary
BetweenLength Checks if annotated method returns a value where the length is between the length of this annotation.
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.
LovConstraint Checks if annotated method returns a value that is either 'in' or 'not in' the Lov (List Of Values).
MaxLength Checks if annotated method returns a value where the length is less than length of this annotation.
MaxValue Checks if annotated method returns a value with no more than the maximum value.
MinLength Checks if annotated method return a value that has the minimum annotated length.
MinValue Checks if annotated method returns a value with given minimum value.
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.
ValidateList Annotate a method returning a java.util.List, where the elements in the list require validation.
ValidateMap Annotate a method returning a java.util.Map, where the elements in the map require validation.