Package org.apache.wicket.validation.validator

This package provides an implementation of Wicket's validation support.

See:
          Description

Class Summary
AbstractValidator<T> Convenience base class for IValidators.
CreditCardValidator Performs the so-called "mod 10" algorithm to check the validity of credit card numbers such as VISA.
DateValidator Validator for checking dates.
EmailAddressPatternValidator Deprecated. Use EmailAddressValidator instead.
EmailAddressValidator Validator for checking the form/pattern of email addresses.
MaximumValidator<Z extends Comparable<Z> & Serializable> Validator for checking that the value is not greater then a specified maximum value
MinimumValidator<Z extends Comparable<Z> & Serializable> Validator for checking that the value is not smaller then a specified minimum value
NumberValidator<T extends Number> Deprecated. see (Range,Maximum,Minimum)Validator<Z extends Comparable<Z>>
NumberValidator.DoubleMaximumValidator Deprecated. see MaximumValidator<Z extends Comparable<Z>>
NumberValidator.DoubleMinimumValidator Deprecated. see MinimumValidator<Z extends Comparable<Z>>
NumberValidator.DoubleRangeValidator Deprecated. see RangeValidator<Z extends Comparable<Z>>
NumberValidator.MaximumValidator Deprecated. see MaximumValidator<Z extends Comparable<Z>>
NumberValidator.MinimumValidator Deprecated. see MinimumValidator<Z extends Comparable<Z>>
NumberValidator.RangeValidator Deprecated. see RangeValidator<Z extends Comparable<Z>>
PatternValidator Validates a Component by matching the component's value against a regular expression pattern.
RangeValidator<Z extends Comparable<Z> & Serializable> Validator for checking if a given value falls within [min,max] range.
StringValidator Validator for checking String lengths.
StringValidator.ExactLengthValidator Validator for checking if the length of a String is exactly the specified length.
StringValidator.LengthBetweenValidator Validator for checking if the length of a String is within the specified range.
StringValidator.MaximumLengthValidator Validator for checking if the length of a String meets the maximum length requirement.
StringValidator.MinimumLengthValidator Validator for checking if the length of a String meets the minimum length requirement.
UrlValidator Validator for checking URLs.
 

Package org.apache.wicket.validation.validator Description

This package provides an implementation of Wicket's validation support.



Copyright © 2004-2009 Apache Software Foundation. All Rights Reserved.