Class MethodAnnotationCheck

java.lang.Object
org.hibernate.validator.ap.internal.checks.AbstractConstraintCheck
org.hibernate.validator.ap.internal.checks.MethodAnnotationCheck
All Implemented Interfaces:
ConstraintCheck

public class MethodAnnotationCheck extends AbstractConstraintCheck
Checks whether a method is correctly annotated with a valid constraint involving the return type or the method parameters (cross-parameters).
Author:
Nicola Ferraro
  • Constructor Details

    • MethodAnnotationCheck

      public MethodAnnotationCheck(ConstraintHelper constraintHelper)
  • Method Details

    • checkMethod

      public Set<ConstraintCheckIssue> checkMethod(ExecutableElement element, AnnotationMirror annotation)
      Description copied from interface: ConstraintCheck
      Checks, whether the given annotation is allowed at the given method.
      Specified by:
      checkMethod in interface ConstraintCheck
      Overrides:
      checkMethod in class AbstractConstraintCheck
      Parameters:
      element - An annotated method.
      annotation - An annotation at that method.
      Returns:
      A set with errors, that describe, why the given annotation is not allowed at the given element. In case no errors occur (the given annotation is allowed at the given element), an empty set must be returned.