Package javax.validation
Interface ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext
- Enclosing interface:
- ConstraintValidatorContext.ConstraintViolationBuilder
public static interface ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext
Represents a node whose context is
configurable (i.e. index, key and isInIterable)
and that is not necessarily a leaf node (i.e. subnodes can
be added).
-
Method Summary
Modifier and TypeMethodDescriptionAdds a bean node (class-level) to the path theConstraintViolationwill be associated to.Adds the newConstraintViolationto be generated if the constraint validator mark the value as invalid.Deprecated.addPropertyNode(String name) Adds a property node to the path theConstraintViolationwill be associated to.Marks the node as being in anIterableor aMap.
-
Method Details
-
inIterable
Marks the node as being in anIterableor aMap.- Returns:
- a builder representing iterable details
-
addNode
ConstraintValidatorContext.ConstraintViolationBuilder.NodeBuilderCustomizableContext addNode(String name) Deprecated.since 1.1 - replaced byaddPropertyNode(String)andaddBeanNode()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
-
addPropertyNode
ConstraintValidatorContext.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
-
addBeanNode
ConstraintValidatorContext.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
-
addConstraintViolation
ConstraintValidatorContext addConstraintViolation()Adds the newConstraintViolationto be generated if the constraint validator mark the value as invalid. Methods of theConstraintViolationBuilderinstance this object comes from and the constraint violation builder nested objects throwIllegalStateExceptionafter this call.- Returns:
ConstraintValidatorContextinstance theConstraintViolationBuildercomes from
-
addPropertyNode(String)andaddBeanNode()