net.sf.oval.constraint |
Validation Constraints package
This package contains the standard single-value validation constraints in form of Java5 Annotations that can be tagged to class fields, constructor parameters, method parameters and getter method return values.
the package also contains the corresponding check classes for the constraints.
|
Java Source File Name | Type | Comment |
Assert.java | Annotation | |
AssertCheck.java | Class | |
AssertConstraintSet.java | Annotation | |
AssertConstraintSetCheck.java | Class | |
AssertFalse.java | Annotation | Check if the value is false. |
AssertFalseCheck.java | Class | |
AssertFieldConstraints.java | Annotation | Checks if the value satsifies the constraints defined for the specified field. |
AssertFieldConstraintsCheck.java | Class | |
AssertTrue.java | Annotation | |
AssertTrueCheck.java | Class | |
AssertURL.java | Annotation | |
AssertURLCheck.java | Class | |
AssertValid.java | Annotation | |
AssertValidCheck.java | Class | |
CheckWith.java | Annotation | |
CheckWithCheck.java | Class | |
Future.java | Annotation | |
FutureCheck.java | Class | |
HasSubstring.java | Annotation | |
HasSubstringCheck.java | Class | |
InstanceOf.java | Annotation | Check if the value is an instance of the specified class or
implements all specified interfaces. |
InstanceOfAny.java | Annotation | Check if the value is an instance of the specified class or
implements one of the specified interfaces. |
InstanceOfAnyCheck.java | Class | |
InstanceOfCheck.java | Class | |
Length.java | Annotation | |
LengthCheck.java | Class | |
MatchPattern.java | Annotation | Check if the specified regular expression pattern is matched. |
MatchPatternCheck.java | Class | |
Max.java | Annotation | |
MaxCheck.java | Class | |
MaxLength.java | Annotation | |
MaxLengthCheck.java | Class | |
MaxSize.java | Annotation | |
MaxSizeCheck.java | Class | |
MemberOf.java | Annotation | |
MemberOfCheck.java | Class | |
Min.java | Annotation | |
MinCheck.java | Class | |
MinLength.java | Annotation | |
MinLengthCheck.java | Class | |
MinSize.java | Annotation | |
MinSizeCheck.java | Class | |
NoSelfReference.java | Annotation | Check that the value is not a reference to the validated object itself.
This is e.g. |
NoSelfReferenceCheck.java | Class | |
NotBlank.java | Annotation | Check if the string representation is not empty and
does not only contain white spaces. |
NotBlankCheck.java | Class | |
NotEmpty.java | Annotation | |
NotEmptyCheck.java | Class | |
NotEqual.java | Annotation | |
NotEqualCheck.java | Class | |
NotMemberOf.java | Annotation | |
NotMemberOfCheck.java | Class | |
NotNegative.java | Annotation | |
NotNegativeCheck.java | Class | |
NotNull.java | Annotation | |
NotNullCheck.java | Class | |
Past.java | Annotation | |
PastCheck.java | Class | |
Range.java | Annotation | |
RangeCheck.java | Class | |
Size.java | Annotation | |
SizeCheck.java | Class | |
ValidateWithMethod.java | Annotation | |
ValidateWithMethodCheck.java | Class | |