com.vaadin.data.validator
Class RegexpValidator
java.lang.Object
com.vaadin.data.validator.AbstractValidator<java.lang.String>
com.vaadin.data.validator.AbstractStringValidator
com.vaadin.data.validator.RegexpValidator
- All Implemented Interfaces:
- Validator, java.io.Serializable
- Direct Known Subclasses:
- EmailValidator
public class RegexpValidator
- extends AbstractStringValidator
String validator comparing the string against a Java regular expression. Both
complete matches and substring matches are supported.
For the Java regular expression syntax, see
java.util.regex.Pattern#sum
See AbstractStringValidator
for more
information.
An empty string or a null is always accepted - use the required flag on
fields or a separate validator (or override isValidValue(String)
) to
fail on empty values.
- Since:
- 5.4
- Author:
- Vaadin Ltd.
- See Also:
- Serialized Form
Constructor Summary |
RegexpValidator(java.lang.String regexp,
boolean complete,
java.lang.String errorMessage)
Creates a validator for checking that the regular expression matches the
string to validate. |
RegexpValidator(java.lang.String regexp,
java.lang.String errorMessage)
Creates a validator for checking that the regular expression matches the
complete string to validate. |
Method Summary |
protected boolean |
isValidValue(java.lang.String value)
Internally check the validity of a value. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
RegexpValidator
public RegexpValidator(java.lang.String regexp,
java.lang.String errorMessage)
- Creates a validator for checking that the regular expression matches the
complete string to validate.
- Parameters:
regexp
- a Java regular expressionerrorMessage
- the message to display in case the value does not validate.
RegexpValidator
public RegexpValidator(java.lang.String regexp,
boolean complete,
java.lang.String errorMessage)
- Creates a validator for checking that the regular expression matches the
string to validate.
- Parameters:
regexp
- a Java regular expressioncomplete
- true to use check for a complete match, false to look for a
matching substringerrorMessage
- the message to display in case the value does not validate.
isValidValue
protected boolean isValidValue(java.lang.String value)
- Description copied from class:
AbstractValidator
- Internally check the validity of a value. This method can be used to
perform validation in subclasses if customization of the error message is
not needed. Otherwise, subclasses should override
AbstractValidator.validate(Object)
and the return value of this method is ignored.
This method should not be called from outside the validator class itself.
- Specified by:
isValidValue
in class AbstractValidator<java.lang.String>
- Returns:
Copyright © 2000-2014 Vaadin Ltd. All Rights Reserved.