Package jakarta.validation
Interface ConstraintValidatorContext.ConstraintViolationBuilder.ContainerElementNodeContextBuilder
- 
- Enclosing interface:
- ConstraintValidatorContext.ConstraintViolationBuilder
 
 public static interface ConstraintValidatorContext.ConstraintViolationBuilder.ContainerElementNodeContextBuilderRepresents refinement choices for a container element node.If the container is an indexed collection or a map, the index or the key should be set. The node is not necessarily a leaf node (i.e. subnodes can be added). - Since:
- 2.0
 
- 
- 
Method Summary
 
- 
- 
- 
Method Detail- 
atKeyConstraintValidatorContext.ConstraintViolationBuilder.ContainerElementNodeBuilderDefinedContext atKey(Object key) Defines the key the object is into theMap.- Parameters:
- key- map key
- Returns:
- a builder representing the current node
 
 - 
atIndexConstraintValidatorContext.ConstraintViolationBuilder.ContainerElementNodeBuilderDefinedContext atIndex(Integer index) Defines the index the object is into theListor array.- Parameters:
- index- index
- Returns:
- a builder representing the current node
 
 - 
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
 
 - 
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
 
 - 
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
 
 - 
addConstraintViolationConstraintValidatorContext addConstraintViolation() Adds the newConstraintViolationto be generated if the constraint validator mark the value as invalid.Methods of the ConstraintViolationBuilderinstance this object comes from and the constraint violation builder nested objects throwIllegalStateExceptionafter this call.- Returns:
- ConstraintValidatorContextinstance the- ConstraintViolationBuildercomes from
 
 
- 
 
-