Uses of Interface
javax.validation.Path.Node

Packages that use Path.Node
Package
Description
Top level package of the Bean Validation API.
  • Uses of Path.Node in javax.validation

    Subinterfaces of Path.Node in javax.validation
    Modifier and Type
    Interface
    Description
    static interface 
    Node representing a bean.
    static interface 
    Node representing a constructor.
    static interface 
    Node representing an element in a generic container such as Optional, List or Map.
    static interface 
    Node representing the element holding cross-parameter constraints of a method or constructor.
    static interface 
    Node representing a method.
    static interface 
    Node representing a parameter of a method or constructor.
    static interface 
    Node representing a property.
    static interface 
    Node representing the return value of a method or constructor.
    Subinterfaces with type arguments of type Path.Node in javax.validation
    Modifier and Type
    Interface
    Description
    interface 
    Represents the navigation path from an object to another in an object graph.
    Methods in javax.validation with type parameters of type Path.Node
    Modifier and Type
    Method
    Description
    <T extends Path.Node>
    T
    Path.Node.as(Class<T> nodeType)
    Narrows the type of this node down to the given type.
    Methods in javax.validation with parameters of type Path.Node
    Modifier and Type
    Method
    Description
    boolean
    TraversableResolver.isCascadable(Object traversableObject, Path.Node traversableProperty, Class<?> rootBeanType, Path pathToTraversableObject, ElementType elementType)
    Determines if the Bean Validation provider is allowed to cascade validation on the bean instance returned by the property value marked as @Valid.
    boolean
    TraversableResolver.isReachable(Object traversableObject, Path.Node traversableProperty, Class<?> rootBeanType, Path pathToTraversableObject, ElementType elementType)
    Determines if the Bean Validation provider is allowed to reach the property state.