Package jakarta.validation
Interface ConstraintValidatorContext.ConstraintViolationBuilder
- 
- Enclosing interface:
- ConstraintValidatorContext
 
 public static interface ConstraintValidatorContext.ConstraintViolationBuilderConstraintViolationbuilder allowing to optionally associate the violation report to a sub path.To create the ConstraintViolation, one must call either one of theaddConstraintViolation()methods available in one of the interfaces of the fluent API.If another method is called after addConstraintViolation()onConstraintViolationBuilderor any of its associated objects anIllegalStateExceptionis raised.
- 
- 
Nested Class Summary
 - 
Method Summary
 
- 
- 
- 
Method Detail- 
addNodeConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderDefinedContext addNode(String name) Deprecated.Adds a node to the path theConstraintViolationwill be associated to.namedescribes a single property. In particular, dot (.) is not allowed.- Parameters:
- name- property name
- Returns:
- a builder representing node name
 
 - 
addPropertyNodeConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext addPropertyNode(String name) Adds a property node to the path theConstraintViolationwill be associated to.namedescribes a single property. In particular, dot (.) is not allowed.- Parameters:
- name- property name
- Returns:
- a builder representing node name
- Throws:
- IllegalArgumentException- if the name is null
- Since:
- 1.1
 
 - 
addBeanNodeConstraintValidatorContext.ConstraintViolationBuilder.LeafNodeBuilderCustomizableContext addBeanNode() Adds a bean node (class-level) to the path theConstraintViolationwill be associated to. Note that bean nodes are always leaf nodes.- Returns:
- a builder representing the bean node
- Since:
- 1.1
 
 - 
addContainerElementNodeConstraintValidatorContext.ConstraintViolationBuilder.ContainerElementNodeBuilderCustomizableContext addContainerElementNode(String name, Class<?> containerType, Integer typeArgumentIndex) Adds a container element node to the path theConstraintViolationwill be associated to.- Parameters:
- name- the node name
- containerType- the type of the container
- typeArgumentIndex- the index of the type argument
- Returns:
- a builder representing the container element node
- Throws:
- IllegalArgumentException- if the index is not valid
- Since:
- 2.0
 
 - 
addParameterNodeConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderDefinedContext addParameterNode(int index) Adds a method parameter node to the path theConstraintViolationwill be associated to. The parameter index must be valid (i.e. within the boundaries of the method parameter indexes). May only be called from within cross-parameter validators.- Parameters:
- index- the parameter index
- Returns:
- a builder representing the index-th parameter node
- Throws:
- IllegalArgumentException- if the index is not valid
- Since:
- 1.1
 
 - 
addConstraintViolationConstraintValidatorContext addConstraintViolation() Adds the newConstraintViolationto be generated if the constraint validator marks the value as invalid.Methods of this ConstraintViolationBuilderinstance and its nested objects throwIllegalStateExceptionfrom now on.- Returns:
- the ConstraintValidatorContextinstance theConstraintViolationBuildercomes from
 
 
- 
 
-