Uses of Interface
jakarta.validation.Path.Node
-
Packages that use Path.Node Package Description jakarta.validation Top level package of the Jakarta Validation API. -
-
Uses of Path.Node in jakarta.validation
Subinterfaces of Path.Node in jakarta.validation Modifier and Type Interface Description static interface
Path.BeanNode
Node representing a bean.static interface
Path.ConstructorNode
Node representing a constructor.static interface
Path.ContainerElementNode
Node representing an element in a generic container such asOptional
,List
orMap
.static interface
Path.CrossParameterNode
Node representing the element holding cross-parameter constraints of a method or constructor.static interface
Path.MethodNode
Node representing a method.static interface
Path.ParameterNode
Node representing a parameter of a method or constructor.static interface
Path.PropertyNode
Node representing a property.static interface
Path.ReturnValueNode
Node representing the return value of a method or constructor.Methods in jakarta.validation with type parameters of type Path.Node Modifier and Type Method Description <T extends Path.Node>
TPath.Node. as(java.lang.Class<T> nodeType)
Narrows the type of this node down to the given type.Methods in jakarta.validation with parameters of type Path.Node Modifier and Type Method Description boolean
TraversableResolver. isCascadable(java.lang.Object traversableObject, Path.Node traversableProperty, java.lang.Class<?> rootBeanType, Path pathToTraversableObject, java.lang.annotation.ElementType elementType)
Determines if the Jakarta Validation provider is allowed to cascade validation on the bean instance returned by the property value marked as@Valid
.boolean
TraversableResolver. isReachable(java.lang.Object traversableObject, Path.Node traversableProperty, java.lang.Class<?> rootBeanType, Path pathToTraversableObject, java.lang.annotation.ElementType elementType)
Determines if the Jakarta Validation provider is allowed to reach the property state.
-