Uses of Interface
javax.validation.ConstraintViolation
Packages that use ConstraintViolation
Package
Description
Top level package of the Bean Validation API.
Package related to the control and execution of executable validation.
-
Uses of ConstraintViolation in javax.validation
Fields in javax.validation with type parameters of type ConstraintViolationModifier and TypeFieldDescriptionprivate final Set
<ConstraintViolation<?>> ConstraintViolationException.constraintViolations
Methods in javax.validation that return types with arguments of type ConstraintViolationModifier and TypeMethodDescriptionConstraintViolationException.getConstraintViolations()
Returns the set of constraint violations reported during a validation.<T> Set
<ConstraintViolation<T>> Validates all constraints onobject
.<T> Set
<ConstraintViolation<T>> Validator.validateProperty
(T object, String propertyName, Class<?>... groups) Validates all constraints placed on the property ofobject
namedpropertyName
.<T> Set
<ConstraintViolation<T>> Validator.validateValue
(Class<T> beanType, String propertyName, Object value, Class<?>... groups) Validates all constraints placed on the property namedpropertyName
of the classbeanType
would the property value bevalue
.Method parameters in javax.validation with type arguments of type ConstraintViolationModifier and TypeMethodDescriptionprivate static String
ConstraintViolationException.toString
(Set<? extends ConstraintViolation<?>> constraintViolations) Constructor parameters in javax.validation with type arguments of type ConstraintViolationModifierConstructorDescriptionConstraintViolationException
(String message, Set<? extends ConstraintViolation<?>> constraintViolations) Creates a constraint violation report.ConstraintViolationException
(Set<? extends ConstraintViolation<?>> constraintViolations) Creates a constraint violation report. -
Uses of ConstraintViolation in javax.validation.executable
Methods in javax.validation.executable that return types with arguments of type ConstraintViolationModifier and TypeMethodDescription<T> Set
<ConstraintViolation<T>> ExecutableValidator.validateConstructorParameters
(Constructor<? extends T> constructor, Object[] parameterValues, Class<?>... groups) Validates all constraints placed on the parameters of the given constructor.<T> Set
<ConstraintViolation<T>> ExecutableValidator.validateConstructorReturnValue
(Constructor<? extends T> constructor, T createdObject, Class<?>... groups) Validates all return value constraints of the given constructor.<T> Set
<ConstraintViolation<T>> ExecutableValidator.validateParameters
(T object, Method method, Object[] parameterValues, Class<?>... groups) Validates all constraints placed on the parameters of the given method.<T> Set
<ConstraintViolation<T>> ExecutableValidator.validateReturnValue
(T object, Method method, Object returnValue, Class<?>... groups) Validates all return value constraints of the given method.