Package jakarta.validation
Interface ConstraintValidatorContext.ConstraintViolationBuilder.ContainerElementNodeContextBuilder
- Enclosing interface:
- ConstraintValidatorContext.ConstraintViolationBuilder
public static interface ConstraintValidatorContext.ConstraintViolationBuilder.ContainerElementNodeContextBuilder
Represents 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
Modifier and TypeMethodDescriptionAdds a bean node (class-level) to the path theConstraintViolation
will be associated to.Adds the newConstraintViolation
to be generated if the constraint validator mark the value as invalid.ConstraintValidatorContext.ConstraintViolationBuilder.ContainerElementNodeBuilderCustomizableContext
addContainerElementNode
(String name, Class<?> containerType, Integer typeArgumentIndex) Adds a container element node to the path theConstraintViolation
will be associated to.addPropertyNode
(String name) Adds a property node to the path theConstraintViolation
will be associated to.Defines the index the object is into theList
or array.Defines the key the object is into theMap
.
-
Method Details
-
atKey
ConstraintValidatorContext.ConstraintViolationBuilder.ContainerElementNodeBuilderDefinedContext atKey(Object key) Defines the key the object is into theMap
.- Parameters:
key
- map key- Returns:
- a builder representing the current node
-
atIndex
ConstraintValidatorContext.ConstraintViolationBuilder.ContainerElementNodeBuilderDefinedContext atIndex(Integer index) Defines the index the object is into theList
or array.- Parameters:
index
- index- Returns:
- a builder representing the current node
-
addPropertyNode
ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext addPropertyNode(String name) Adds a property node to the path theConstraintViolation
will be associated to.name
describes 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
-
addBeanNode
ConstraintValidatorContext.ConstraintViolationBuilder.LeafNodeBuilderCustomizableContext addBeanNode()Adds a bean node (class-level) to the path theConstraintViolation
will be associated to.Note that bean nodes are always leaf nodes.
- Returns:
- a builder representing the bean node
-
addContainerElementNode
ConstraintValidatorContext.ConstraintViolationBuilder.ContainerElementNodeBuilderCustomizableContext addContainerElementNode(String name, Class<?> containerType, Integer typeArgumentIndex) Adds a container element node to the path theConstraintViolation
will be associated to.- Parameters:
name
- the node namecontainerType
- the type of the containertypeArgumentIndex
- the index of the type argument- Returns:
- a builder representing the container element node
- Throws:
IllegalArgumentException
- if the index is not valid
-
addConstraintViolation
ConstraintValidatorContext addConstraintViolation()Adds the newConstraintViolation
to be generated if the constraint validator mark the value as invalid.Methods of the
ConstraintViolationBuilder
instance this object comes from and the constraint violation builder nested objects throwIllegalStateException
after this call.- Returns:
ConstraintValidatorContext
instance theConstraintViolationBuilder
comes from
-