T
- the type of the root beanpublic interface ConstraintViolation<T>
Modifier and Type | Method and Description |
---|---|
ConstraintDescriptor<?> |
getConstraintDescriptor()
Returns the constraint metadata reported to fail.
|
Object[] |
getExecutableParameters()
Returns an
Object[] representing the constructor or method invocation
arguments if the ConstraintViolation is returned after validating the
method or constructor parameters. |
Object |
getExecutableReturnValue()
Returns the return value of the constructor or method invocation
if the
ConstraintViolation is returned after validating the method
or constructor return value. |
Object |
getInvalidValue()
Returns the value failing to pass the constraint.
|
Object |
getLeafBean()
Returns:
the bean instance the constraint is applied on if it is
a bean constraint
the bean instance hosting the property the constraint
is applied on if it is a property constraint or a container element constraint
hosted on a property
null when the ConstraintViolation is returned
after calling Validator.validateValue(Class, String, Object, Class[])
the object the method is executed on if it is
a method parameter, cross-parameter or return value constraint or a
container element constraint hosted on a method parameter or return value
null if it is a constructor parameter or
cross-parameter constraint or a container element constraint hosted on a
constructor parameter
the object the constructor has created if it is a
constructor return value constraint
|
String |
getMessage() |
String |
getMessageTemplate() |
Path |
getPropertyPath() |
T |
getRootBean()
Returns the root bean being validated.
|
Class<T> |
getRootBeanClass()
Returns the class of the root bean being validated.
|
<U> U |
unwrap(Class<U> type)
Returns an instance of the specified type allowing access to
provider-specific APIs.
|
String getMessage()
String getMessageTemplate()
T getRootBean()
Returns null
when:
ConstraintViolation
is returned after calling
Validator.validateValue(Class, String, Object, Class[])
ConstraintViolation
is returned after validating a
constructor.null
Class<T> getRootBeanClass()
Object getLeafBean()
null
when the ConstraintViolation
is returned
after calling Validator.validateValue(Class, String, Object, Class[])
null
if it is a constructor parameter or
cross-parameter constraint or a container element constraint hosted on a
constructor parameterObject[] getExecutableParameters()
Object[]
representing the constructor or method invocation
arguments if the ConstraintViolation
is returned after validating the
method or constructor parameters.
Returns null
otherwise.null
Object getExecutableReturnValue()
ConstraintViolation
is returned after validating the method
or constructor return value.
Returns null
if the method has no return value.
Returns null
otherwise.
null
Path getPropertyPath()
rootBean
Object getInvalidValue()
Object[]
representing
the method invocation arguments is returned.ConstraintDescriptor<?> getConstraintDescriptor()
<U> U unwrap(Class<U> type)
ValidationException
is thrown.U
- the type of the object to be returnedtype
- the class of the object to be returnedValidationException
- if the provider does not support the callCopyright © 2019 Eclipse Foundation.
Use is subject to license terms.