Uses of Package
net.sf.oval.constraint

Packages that use net.sf.oval.constraint
net.sf.oval   
net.sf.oval.constraint 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. 
 

Classes in net.sf.oval.constraint used by net.sf.oval
AssertConstraintSetCheck
           
AssertFieldConstraintsCheck
           
AssertValidCheck
           
 

Classes in net.sf.oval.constraint used by net.sf.oval.constraint
Assert
          Check if evaluating the expression in the specified expression language returns true.
AssertConstraintSet
          Check if the value satisfies the all constraints of specified constraint set.
AssertFieldConstraints
          Check if the value satisfies the constraints defined for the specified field.
AssertURL
          Check if the value is a valid URL.
AssertURLCheck.URIScheme
          http://en.wikipedia.org/wiki/URI_scheme
CheckWith
          Check the value by a method of the same class that takes the value as argument and returns true if valid and false if invalid.
CheckWithCheck.SimpleCheck
           
DateRange
          Check if the date is within the a date range.
Digits
          Check if the String representation has the given max/min number of integral and fractional digits.
Email
          Check if the value is a valid e-mail address.
EqualToField
          Check if value equals the value of the referenced field.
Future
          Check if the date is in the future.
HasSubstring
          Check if the string contains a certain substring.
InstanceOf
          Check if the value is an instance of the specified class or implements all specified interfaces.
InstanceOfAny
          Check if the value is an instance of the specified class or implements one of the specified interfaces.
Length
          Check if the string representation has certain length.
MatchPattern
          Check if the specified regular expression pattern is matched.
Max
          Check if the number is smaller than or equal to X.
MaxLength
          Check if the string representation does not exceed the given length.
MaxSize
          Check if an array or collection does not exceed the given size.
MemberOf
          Check if the string representation is contained in the given string array.
Min
          Check if the number is greater than or equal to X.
MinLength
          Check if the string representation has at least the given length.
MinSize
          Check if the array or collection has at least the given number of elements.
NotEqual
          Check if the string representation does not equal a given string.
NotEqualToField
          Check if value does not equal the value of the referenced field.
NotMatchPattern
          Check if the specified regular expression pattern is not matched.
NotMemberOf
          Check if the string representation is not contained in the given string array.
Past
          Check if the date is in the past.
Range
          Check if the number is in the given range.
Size
          Check if the array, map, or collection has the given size.
ValidateWithMethod
          Check the value by a method of the same class that takes the value as argument and returns true if valid and false if invalid.
 



Copyright © 2005-2013 The OVal Development Team. All Rights Reserved.