From 6ea0e2c4aa948e369960eda98a3cbf1c2073628a Mon Sep 17 00:00:00 2001
From: Thomas T Strauss
+ * This method returns false, if the {@link jakarta.validation.Valid} annotation is applied to:
+ * @Valid
annotation and decides, if the annotation is useful.
+ *
+ *
+ *
@Valid
annotation and decides, if the annotation is useful.
* - * This method returns false, if the {@link jakarta.validation.Valid} annotation is applied to: + * This method returns false, if the {@link jakarta.validation.Valid} annotation is applied to + * types matching {@link #BUILTIN_TYPE_NAMES}: *
- * Invoke {@link #isMultiValueConstraint(Class)} prior to calling this method to check whether a given constraint
- * actually is a multi-value constraint.
+ * Invoke {@link #isMultiValueConstraint(Class)} prior to calling this method to check whether a given constraint actually is a multi-value constraint.
*
* @param multiValueConstraint the multi-value constraint annotation from which to retrieve the contained constraints
- * @param the type of the annotation
- *
+ * @param the type of the annotation
* @return A list of constraint annotations, may be empty but never {@code null}.
*/
public List
- * This method returns false, if the {@link jakarta.validation.Valid} annotation is applied to
- * types matching {@link #BUILTIN_TYPE_NAMES}:
+ * This method returns false, if the {@link jakarta.validation.Valid} annotation is applied to types matching {@link #BUILTIN_TYPE_NAMES}:
*
*
*
* @param annotationType The annotation type to test.
- *
* @return {@code true} if the annotation fulfills the above conditions, {@code false} otherwise.
*/
public boolean isConstraintAnnotation(Class extends Annotation> annotationType) {
@@ -1143,10 +1134,7 @@ private boolean isJavaMoneyInClasspath() {
* Returns the default validators for the given constraint type.
*
* @param annotationType The constraint annotation type.
- *
- * @return A list with the default validators as retrieved from
- * {@link Constraint#validatedBy()} or the list of validators for
- * built-in constraints.
+ * @return A list with the default validators as retrieved from {@link Constraint#validatedBy()} or the list of validators for built-in constraints.
*/
@SuppressWarnings("unchecked")
private List@Valid
annotation and decides, if the annotation is useful.
*
*
*