Package | Description |
---|---|
org.apache.tapestry.form.validator |
Modifier and Type | Class and Description |
---|---|
class |
Email
Validates that the user input, a string, is an email address (by checking it against a regular
expression).
|
class |
Max
Validates that the input value is not larger than a particular maximum value.
|
class |
MaxDate
Validates that the object, a Date, is not after a set maximum.
|
class |
MaxLength
Validator that ensures a string value does not exceed a maximum length.
|
class |
Min
Expects the object to be a number, and checks that the value not smaller than a specified value.
|
class |
MinDate
Expects the value to be a
Date , and constrains the date to follow a particular date. |
class |
MinLength
Validates that the value, a string, is of a minimum length.
|
class |
Pattern
Validates a user input string against a regular expression pattern.
|
class |
Required
Validator that ensures a value was supplied. |