Interface Path<X>

    • Method Detail

      • getModel

        Bindable<X> getModel()
        Return the bindable object that corresponds to the path expression.
        Returns:
        bindable object corresponding to the path
      • getParentPath

        Path<?> getParentPath()
        Return the parent "node" in the path or null if no parent.
        Returns:
        parent
      • get

        <Y> Path<Y> get​(SingularAttribute<? super X,​Y> attribute)
        Create a path corresponding to the referenced single-valued attribute.
        Parameters:
        attribute - single-valued attribute
        Returns:
        path corresponding to the referenced attribute
      • get

        <E,​C extends java.util.Collection<E>> Expression<C> get​(PluralAttribute<? super X,​C,​E> collection)
        Create a path corresponding to the referenced collection-valued attribute.
        Parameters:
        collection - collection-valued attribute
        Returns:
        expression corresponding to the referenced attribute
      • get

        <K,​V,​M extends java.util.Map<K,​V>> Expression<M> get​(MapAttribute<? super X,​K,​V> map)
        Create a path corresponding to the referenced map-valued attribute.
        Parameters:
        map - map-valued attribute
        Returns:
        expression corresponding to the referenced attribute
      • type

        Expression<java.lang.Class<? extends X>> type()
        Create an expression corresponding to the type of the path.
        Returns:
        expression corresponding to the type of the path
      • get

        <Y> Path<Y> get​(java.lang.String attributeName)
        Create a path corresponding to the referenced attribute.

        Note: Applications using the string-based API may need to specify the type resulting from the get(jakarta.persistence.metamodel.SingularAttribute<? super X, Y>) operation in order to avoid the use of Path variables.

        For example:

        rather than:

        Parameters:
        attributeName - name of the attribute
        Returns:
        path corresponding to the referenced attribute
        Throws:
        java.lang.IllegalStateException - if invoked on a path that corresponds to a basic type
        java.lang.IllegalArgumentException - if attribute of the given name does not otherwise exist