| AbstractFieldValidator |
Abstract implementation of Validator that validates one specific string property
in any object that is specified by the AbstractFieldValidator.fieldPath property.
|
| CompositeValidator |
Implementation of Validator that validates objects using composition of other
validators
|
| EmailValidator |
Validates one specific string property in any object if it is valid email address.
|
| EnumValueValidator |
|
| EnumValueValidatorTest |
|
| FieldEmptyValidator |
Implementation of AbstractFieldValidator that validates one specific string property
in any object if it is null or blank.
|
| FieldGreaterThanZeroValidator |
Implementation of AbstractFieldValidator that validates one number property
in any object if it is not null and greater than zero.
|
| FieldIntegerValidator |
|
| FieldIntegerValidatorTest |
|
| FieldNotEmptyOrTooLongValidator |
Implementation of AbstractFieldValidator that validates one specific string property
in any object if it is not null, not blank and shorter than maxLength.
|
| FieldNotEmptyValidator |
Implementation of AbstractFieldValidator that validates one specific string property
in any object if it is not null and not blank.
|
| FieldTooLongValidator |
Implementation of AbstractFieldValidator that validates one specific string property
in any object if it is shorter than maxLength.
|
| FieldTooLongValidatorTest |
|
| OptionalFieldValidator |
|
| RegexpValidator |
Validates one specific string property in any object if it is valid against given regular expression.
|
| SubtypeValidator |
Subtype validator is a single class for validating type or any of its registered subtypes.
|
| SubtypeValidatorTest |
|
| SubtypeValidatorTest.Base |
|
| SubtypeValidatorTest.OtherType |
|
| SubtypeValidatorTest.SubType |
|