| CompositeValidator |
Implementation of Validator that validates objects using composition of other
validators
|
| EmailValidator |
|
| EnumValueValidator |
|
| EnumValueValidatorTest |
|
| FieldEmptyValidator |
Implementation of Validator that validates one specific string property
specified by FieldEmptyValidator.fieldPath property in any object if it is null or blank
|
| FieldGreaterThanZeroValidator |
|
| FieldIntegerValidator |
|
| FieldIntegerValidatorTest |
|
| FieldNotEmptyOrTooLongValidator |
Implementation of Validator that validates one specific string property
specified by FieldNotEmptyOrTooLongValidator.fieldPath property in any object if it is not null, not blank and shorter than maxLength
|
| FieldNotEmptyValidator |
Implementation of Validator that validates one specific string property
specified by FieldNotEmptyValidator.fieldPath property in any object if it is not null and not blank
|
| FieldTooLongValidator |
Implementation of Validator that validates one specific string property
specified by FieldTooLongValidator.fieldPath property in any object if it is shorter than maxLength
|
| FieldTooLongValidatorTest |
|
| RegexpValidator |
Validates one specific string property specified by RegexpValidator.fieldPath 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 |
|