Uses of Interface
org.hibernate.validator.method.MethodConstraintViolation

Packages that use MethodConstraintViolation
org.hibernate.validator.engine Implementations for the core interfaces of JSR-303. 
org.hibernate.validator.method This package provides support for method-level constraints based on JSR 303: Bean Validation, Appendix C ("Proposal for method-level validation"). 
 

Uses of MethodConstraintViolation in org.hibernate.validator.engine
 

Classes in org.hibernate.validator.engine that implement MethodConstraintViolation
 class MethodConstraintViolationImpl<T>
           
 

Methods in org.hibernate.validator.engine that return MethodConstraintViolation
<U,V> MethodConstraintViolation<T>
MethodValidationContext.createConstraintViolation(ValueContext<U,V> localContext, MessageAndPath messageAndPath, ConstraintDescriptor<?> descriptor)
           
 

Methods in org.hibernate.validator.engine that return types with arguments of type MethodConstraintViolation
<T> Set<MethodConstraintViolation<T>>
ValidatorImpl.validateAllParameters(T object, Method method, Object[] parameterValues, Class<?>... groups)
           
<T> Set<MethodConstraintViolation<T>>
ValidatorImpl.validateParameter(T object, Method method, Object parameterValue, int parameterIndex, Class<?>... groups)
           
<T> Set<MethodConstraintViolation<T>>
ValidatorImpl.validateReturnValue(T object, Method method, Object returnValue, Class<?>... groups)
           
 

Uses of MethodConstraintViolation in org.hibernate.validator.method
 

Methods in org.hibernate.validator.method that return types with arguments of type MethodConstraintViolation
 Set<MethodConstraintViolation<?>> MethodConstraintViolationException.getConstraintViolations()
          Set of constraint violations reported during a validation
<T> Set<MethodConstraintViolation<T>>
MethodValidator.validateAllParameters(T object, Method method, Object[] parameterValues, Class<?>... groups)
          Validates all parameters of a given method.
<T> Set<MethodConstraintViolation<T>>
MethodValidator.validateParameter(T object, Method method, Object parameterValue, int parameterIndex, Class<?>... groups)
          Validates a given parameter of a given method.
<T> Set<MethodConstraintViolation<T>>
MethodValidator.validateReturnValue(T object, Method method, Object returnValue, Class<?>... groups)
          Validates the return value of a given method.
 

Constructor parameters in org.hibernate.validator.method with type arguments of type MethodConstraintViolation
MethodConstraintViolationException(Set<? extends MethodConstraintViolation<?>> constraintViolations)
          Creates a new new MethodConstraintViolationException.
MethodConstraintViolationException(String message, Set<? extends MethodConstraintViolation<?>> constraintViolations)
          Creates a new new MethodConstraintViolationException.
 



Copyright © 2007-2011 Red Hat Middleware, LLC. All Rights Reserved