Java org.apache.commons.validator.routines RegexValidator fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.validator.routines RegexValidator fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.validator.routines RegexValidator.

The text is from its open source code.

Constructor

RegexValidator(String regex)
Construct a case sensitive validator for a single regular expression.
RegexValidator(String[] regexs)
Construct a case sensitive validator that matches any one of the set of regular expressions.
RegexValidator(String regex, boolean caseSensitive)
Construct a validator for a single regular expression with the specified case sensitivity.
RegexValidator(String[] regexs, boolean caseSensitive)
Construct a validator that matches any one of the set of regular expressions with the specified case sensitivity.

Method

booleanisValid(String value)
Validate a value against the set of regular expressions.