javax.persistence.criteria

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 Collection<E>> Expression<C> get(PluralAttribute<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 Map<K,V>> Expression<M> get(MapAttribute<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<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(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 operation in order to avoid the use of Path variables.

             For example:
        
             CriteriaQuery<Person> q = cb.createQuery(Person.class);
             Root<Person> p = q.from(Person.class);
             q.select(p)
              .where(cb.isMember("joe",
                                 p.<Set<String>>get("nicknames")));
        
             rather than:
         
             CriteriaQuery<Person> q = cb.createQuery(Person.class);
             Root<Person> p = q.from(Person.class);
             Path<Set<String>> nicknames = p.get("nicknames");
             q.select(p)
              .where(cb.isMember("joe", nicknames));
          
        Parameters:
        attributeName - name of the attribute
        Returns:
        path corresponding to the referenced attribute
        Throws:
        IllegalStateException - if invoked on a path that corresponds to a basic type
        IllegalArgumentException - if attribute of the given name does not otherwise exist

Traduction non disponible

Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Version en cache

21/08/2025 20:54:04 Cette version de la page est en cache (à la date du 21/08/2025 20:54:04) afin d'accélérer le traitement.
Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la version plus récente de la page.

Document créé le 11/06/2005, dernière modification le 18/08/2025
Source du document imprimé : https://www.gaudry.be/java-api-javaee-rf-javax/persistence/criteria/Path.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com, Path (Java(TM) EE 7 Specification APIs)

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.