com.vaadin.data.validator

Package com.vaadin.data.validator

 

See:
          Description

Class Summary
AbstractStringValidator Validator base class for validating strings.
AbstractValidator Abstract Validator implementation that provides a basic Validator implementation except the Validator.isValid(Object) method.
CompositeValidator The CompositeValidator allows you to chain (compose) many validators to validate one field.
DoubleValidator String validator for a double precision floating point number.
EmailValidator String validator for e-mail addresses.
IntegerValidator String validator for integers.
NullValidator This validator is used for validating properties that do or do not allow null values.
RegexpValidator String validator comparing the string against a Java regular expression.
StringLengthValidator This StringLengthValidator is used to validate the length of strings.
 

Package com.vaadin.data.validator Description

Provides various Validator implementations.

AbstractValidator provides an abstract implementation of the Validator interface and can be extended for custom validation needs. AbstractStringValidator can also be extended if the value is a String.