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 Checks if a credit card number is valid.
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. RangeValidator, MaximumValidator, MinimumValidator
NumberValidator.DoubleMaximumValidator Deprecated. see MaximumValidator
NumberValidator.DoubleMinimumValidator Deprecated. see MinimumValidator
NumberValidator.DoubleRangeValidator Deprecated. see RangeValidator
NumberValidator.MaximumValidator Deprecated. see MaximumValidator
NumberValidator.MinimumValidator Deprecated. see MinimumValidator
NumberValidator.RangeValidator Deprecated. see RangeValidator
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-2011 Apache Software Foundation. All Rights Reserved.