Uses of Class
jodd.vtor.Check

Packages that use Check
jodd.vtor Efficient validation tool. 
 

Uses of Check in jodd.vtor
 

Fields in jodd.vtor with type parameters of type Check
protected  Map<String,List<Check>> ValidationContext.map
           
 

Methods in jodd.vtor that return Check
 Check Violation.getCheck()
           
 

Methods in jodd.vtor with parameters of type Check
 void ValidationContext.add(Check check)
          Adds validation checks.
protected  void ValidationContext.copyDefaultCheckProperties(Check destCheck, Annotation annotation)
          Copies default properties from annotation to the check.
 

Method parameters in jodd.vtor with type arguments of type Check
 void ValidationContext.addAll(List<Check> checkList)
          Adds all checks from provided list.
protected  void ValidationContext.collectAnnotationChecks(List<Check> annChecks, Class targetType, String targetName, Annotation[] annotations)
          Collect annotations for some target.
protected  void ValidationContext.collectFieldAnnotationChecks(List<Check> annChecks, Field field)
          Process all annotations of provided field.
 

Constructors in jodd.vtor with parameters of type Check
Violation(String name, Object validatedObject, Object invalidValue, Check check)
          Creates new violation.