Package jakarta.validation
Interface ConstraintValidatorContext.ConstraintViolationBuilder.LeafNodeBuilderCustomizableContext
-
- Enclosing interface:
- ConstraintValidatorContext.ConstraintViolationBuilder
public static interface ConstraintValidatorContext.ConstraintViolationBuilder.LeafNodeBuilderCustomizableContext
Represents a node whose context is configurable (i.e. index, key and isInIterable) and that is a leaf node (i.e. no subnode can be added).- Since:
- 1.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConstraintValidatorContext
addConstraintViolation()
Adds the newConstraintViolation
to be generated if the constraint validator mark the value as invalid.ConstraintValidatorContext.ConstraintViolationBuilder.LeafNodeBuilderCustomizableContext
inContainer(java.lang.Class<?> containerClass, java.lang.Integer typeArgumentIndex)
Marks the node as being in a container such as aList
,Map
orOptional
.ConstraintValidatorContext.ConstraintViolationBuilder.LeafNodeContextBuilder
inIterable()
Marks the node as being in an iterable, e.g.
-
-
-
Method Detail
-
inIterable
ConstraintValidatorContext.ConstraintViolationBuilder.LeafNodeContextBuilder inIterable()
Marks the node as being in an iterable, e.g. array,Iterable
or aMap
.- Returns:
- a builder representing iterable details
-
inContainer
ConstraintValidatorContext.ConstraintViolationBuilder.LeafNodeBuilderCustomizableContext inContainer(java.lang.Class<?> containerClass, java.lang.Integer typeArgumentIndex)
Marks the node as being in a container such as aList
,Map
orOptional
.- Parameters:
containerClass
- the type of the containertypeArgumentIndex
- type index of the concerned type argument- Returns:
- a builder representing the current node
- Throws:
java.lang.IllegalArgumentException
- if the index is not valid- Since:
- 2.0
-
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
-
-