Class PrimitiveCheck
java.lang.Object
org.hibernate.validator.ap.internal.checks.AbstractConstraintCheck
org.hibernate.validator.ap.internal.checks.PrimitiveCheck
- All Implemented Interfaces:
ConstraintCheck
Validates that the given element is not of a primitive type. Applies to
fields and methods (the return type is evaluated).
- Author:
- Gunnar Morling
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncheckField
(VariableElement element, AnnotationMirror annotation) Checks, whether the given annotation is allowed at the given field.checkMethod
(ExecutableElement element, AnnotationMirror annotation) Checks, whether the given annotation is allowed at the given method.Methods inherited from class org.hibernate.validator.ap.internal.checks.AbstractConstraintCheck
checkAnnotationType, checkNonAnnotationType
-
Constructor Details
-
PrimitiveCheck
public PrimitiveCheck()
-
-
Method Details
-
checkField
Description copied from interface:ConstraintCheck
Checks, whether the given annotation is allowed at the given field.- Specified by:
checkField
in interfaceConstraintCheck
- Overrides:
checkField
in classAbstractConstraintCheck
- Parameters:
element
- An annotated field.annotation
- An annotation at that field.- 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.
-
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 interfaceConstraintCheck
- Overrides:
checkMethod
in classAbstractConstraintCheck
- 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.
-