Uses of Class
org.hibernate.validator.ap.internal.checks.ConstraintCheckIssue
Packages that use ConstraintCheckIssue
Package
Description
This package contains check implementations used by the annotation processor to verify
constraint declarations.
This package contains helper classes.
-
Uses of ConstraintCheckIssue in org.hibernate.validator.ap.internal
Method parameters in org.hibernate.validator.ap.internal with type arguments of type ConstraintCheckIssueModifier and TypeMethodDescriptionprotected void
AbstractElementVisitor.reportIssues
(Collection<ConstraintCheckIssue> foundIssues) Reports provided issues usingMessager
API based on their kind (ConstraintCheckIssue.IssueKind
). -
Uses of ConstraintCheckIssue in org.hibernate.validator.ap.internal.checks
Methods in org.hibernate.validator.ap.internal.checks that return ConstraintCheckIssueModifier and TypeMethodDescriptionstatic ConstraintCheckIssue
ConstraintCheckIssue.error
(Element element, AnnotationMirror annotationMirror, String messageKey, Object... messageParameters) Creates a new ConstraintCheckIssue of error kind (ConstraintCheckIssue.IssueKind.ERROR
).static ConstraintCheckIssue
ConstraintCheckIssue.warning
(Element element, AnnotationMirror annotationMirror, String messageKey, Object... messageParameters) Creates a new ConstraintCheckIssue of warning kind (ConstraintCheckIssue.IssueKind.WARNING
).Methods in org.hibernate.validator.ap.internal.checks that return types with arguments of type ConstraintCheckIssueModifier and TypeMethodDescriptionAbstractConstraintCheck.checkAnnotationType
(TypeElement element, AnnotationMirror annotation) AnnotationTypeCheck.checkAnnotationType
(TypeElement element, AnnotationMirror annotation) AnnotationTypeMemberCheck.checkAnnotationType
(TypeElement element, AnnotationMirror annotation) ConstraintCheck.checkAnnotationType
(TypeElement element, AnnotationMirror annotation) Checks, whether the given annotation is allowed at the given annotation type declaration.ConstraintValidatorCheck.checkAnnotationType
(TypeElement element, AnnotationMirror annotation) CrossParameterConstraintCheck.checkAnnotationType
(TypeElement element, AnnotationMirror annotation) MixDirectAndListAnnotationCheck.checkAnnotationType
(TypeElement element, AnnotationMirror annotation) RetentionPolicyCheck.checkAnnotationType
(TypeElement element, AnnotationMirror annotation) TargetCheck.checkAnnotationType
(TypeElement element, AnnotationMirror annotation) AbstractConstraintCheck.checkField
(VariableElement element, AnnotationMirror annotation) ConstraintCheck.checkField
(VariableElement element, AnnotationMirror annotation) Checks, whether the given annotation is allowed at the given field.PrimitiveCheck.checkField
(VariableElement element, AnnotationMirror annotation) StaticCheck.checkField
(VariableElement element, AnnotationMirror annotation) TypeCheck.checkField
(VariableElement element, AnnotationMirror annotation) AbstractConstraintCheck.checkMethod
(ExecutableElement element, AnnotationMirror annotation) ConstraintCheck.checkMethod
(ExecutableElement element, AnnotationMirror annotation) Checks, whether the given annotation is allowed at the given method.GetterCheck.checkMethod
(ExecutableElement element, AnnotationMirror annotation) MethodAnnotationCheck.checkMethod
(ExecutableElement element, AnnotationMirror annotation) PrimitiveCheck.checkMethod
(ExecutableElement element, AnnotationMirror annotation) StaticCheck.checkMethod
(ExecutableElement element, AnnotationMirror annotation) TypeCheck.checkMethod
(ExecutableElement element, AnnotationMirror annotation) AbstractConstraintCheck.checkNonAnnotationType
(TypeElement element, AnnotationMirror annotation) ConstraintCheck.checkNonAnnotationType
(TypeElement element, AnnotationMirror annotation) Checks, whether the given annotation is allowed at the given type declaration (class, interface, enum).GroupSequenceProviderCheck.checkNonAnnotationType
(TypeElement element, AnnotationMirror annotation) TypeCheck.checkNonAnnotationType
(TypeElement element, AnnotationMirror annotation) ConstraintChecks.execute
(Element element, AnnotationMirror annotation) Executes the checks contained within this set against the given element and annotation.MultiValuedChecks.execute
(Element element, AnnotationMirror annotation) SingleValuedChecks.execute
(Element element, AnnotationMirror annotation) -
Uses of ConstraintCheckIssue in org.hibernate.validator.ap.internal.checks.annotationparameters
Methods in org.hibernate.validator.ap.internal.checks.annotationparameters that return types with arguments of type ConstraintCheckIssueModifier and TypeMethodDescriptionAnnotationParametersAbstractCheck.checkAnnotationType
(TypeElement element, AnnotationMirror annotation) AnnotationParametersAbstractCheck.checkField
(VariableElement element, AnnotationMirror annotation) AnnotationParametersAbstractCheck.checkMethod
(ExecutableElement element, AnnotationMirror annotation) AnnotationParametersAbstractCheck.checkNonAnnotationType
(TypeElement element, AnnotationMirror annotation) protected Set<ConstraintCheckIssue>
AnnotationDefaultMessageCheck.doCheck
(Element element, AnnotationMirror annotation) protected abstract Set<ConstraintCheckIssue>
AnnotationParametersAbstractCheck.doCheck
(Element element, AnnotationMirror annotation) Method which actually performs the validation of the annotation parameters.protected Set<ConstraintCheckIssue>
AnnotationParametersDecimalMinMaxCheck.doCheck
(Element element, AnnotationMirror annotation) protected Set<ConstraintCheckIssue>
AnnotationParametersDigitsCheck.doCheck
(Element element, AnnotationMirror annotation) protected Set<ConstraintCheckIssue>
AnnotationParametersGroupsCheck.doCheck
(Element element, AnnotationMirror annotation) protected Set<ConstraintCheckIssue>
AnnotationParametersPatternCheck.doCheck
(Element element, AnnotationMirror annotation) protected Set<ConstraintCheckIssue>
AnnotationParametersScriptAssertCheck.doCheck
(Element element, AnnotationMirror annotation) protected Set<ConstraintCheckIssue>
AnnotationParametersSizeLengthCheck.doCheck
(Element element, AnnotationMirror annotation) protected Set<ConstraintCheckIssue>
AnnotationPayloadUnwrappingCheck.doCheck
(Element element, AnnotationMirror annotation) protected Set<ConstraintCheckIssue>
AnnotationUserMessageCheck.doCheck
(Element element, AnnotationMirror annotation) protected Set<ConstraintCheckIssue>
GroupSequenceCheck.doCheck
(Element element, AnnotationMirror annotation) -
Uses of ConstraintCheckIssue in org.hibernate.validator.ap.internal.classchecks
Methods in org.hibernate.validator.ap.internal.classchecks that return types with arguments of type ConstraintCheckIssueModifier and TypeMethodDescriptionAbstractClassCheck.checkMethod
(ExecutableElement element) AbstractMethodOverrideCheck.checkMethod
(ExecutableElement currentMethod) ClassCheck.checkMethod
(ExecutableElement element) Checks whether the given method is written correctly.protected abstract Set<ConstraintCheckIssue>
AbstractMethodOverrideCheck.checkMethodInternal
(ExecutableElement currentMethod, MethodInheritanceTree overriddenMethodsTree) Performs the check of a method.protected Set<ConstraintCheckIssue>
ParametersMethodOverrideCheck.checkMethodInternal
(ExecutableElement currentMethod, MethodInheritanceTree methodInheritanceTree) protected Set<ConstraintCheckIssue>
ReturnValueMethodOverrideCheck.checkMethodInternal
(ExecutableElement currentMethod, MethodInheritanceTree methodInheritanceTree) final Collection<ConstraintCheckIssue>
Run all checks on the element. -
Uses of ConstraintCheckIssue in org.hibernate.validator.ap.internal.util
Method parameters in org.hibernate.validator.ap.internal.util with type arguments of type ConstraintCheckIssueModifier and TypeMethodDescriptionvoid
MessagerAdapter.reportErrors
(Collection<ConstraintCheckIssue> errors) Reports the given errors against the underlyingMessager
using the specifiedDiagnostic.Kind
.void
MessagerAdapter.reportWarnings
(Collection<ConstraintCheckIssue> warnings) Reports the given warnings against the underlyingMessager
using the specifiedDiagnostic.Kind
.