インタフェース | 説明 |
---|---|
IValidator |
バリデーション機能のインタフェースを提供します.
|
クラス | 説明 |
---|---|
ValidateByte |
Checks if the field can safely be converted to a byte primitive.
|
ValidateCreditCard |
Checks if the field is a valid credit card number.
|
ValidateDate |
Checks if the field is a valid date.
|
ValidateDouble |
Checks if the field can safely be converted to a double primitive.
|
ValidateDoubleRange |
Checks if a fields value is within a range (min & max specified in the vars attribute).
|
ValidateEmail |
Checks if a field has a valid e-mail address.
|
ValidateFloat |
Checks if the field can safely be converted to a float primitive.
|
ValidateFloatRange |
Checks if a fields value is within a range (min & max specified in the vars attribute).
|
ValidateInteger |
Checks if the field can safely be converted to an int primitive.
|
ValidateIntRange |
Checks if a fields value is within a range (min & max specified in the vars attribute).
|
ValidateLong |
Checks if the field can safely be converted to a long primitive.
|
ValidateMask |
Checks if the field matches the regular expression in the field's mask attribute.
|
ValidateMaxLength |
Checks if the field's length is less than or equal to the maximum value.
|
ValidateMinLength |
Checks if the field's length is greater than or equal to the minimum value.
|
ValidateRequired |
Checks if the field isn't null and length of the field is greater than zero not including whitespace.
|
ValidateRequiredIf |
Checks if the field isn't null based on the values of other fields.
|
ValidateShort |
Checks if the field can safely be converted to a short primitive.
|
ValidateUrl |
Checks if a field has a valid url.
|