javax.persistence.criteria

Interface FetchParent<Z,X>

  • Type Parameters:
    Z - the source type
    X - the target type
    All Known Subinterfaces:
    CollectionJoin<Z,E>, Fetch<Z,X>, From<Z,X>, Join<Z,X>, ListJoin<Z,E>, MapJoin<Z,K,V>, PluralJoin<Z,C,E>, Root<X>, SetJoin<Z,E>

    public interface FetchParent<Z,X>
    Represents an element of the from clause which may function as the parent of Fetches.
    Since:
    Java Persistence 2.0
    • Method Detail

      • getFetches

        Set<Fetch<X,?>> getFetches()
        Return the fetch joins that have been made from this type. Returns empty set if no fetch joins have been made from this type. Modifications to the set do not affect the query.
        Returns:
        fetch joins made from this type
      • fetch

        <Y> Fetch<X,Y> fetch(SingularAttribute<? super X,Y> attribute)
        Create a fetch join to the specified single-valued attribute using an inner join.
        Parameters:
        attribute - target of the join
        Returns:
        the resulting fetch join
      • fetch

        <Y> Fetch<X,Y> fetch(SingularAttribute<? super X,Y> attribute,
                             JoinType jt)
        Create a fetch join to the specified single-valued attribute using the given join type.
        Parameters:
        attribute - target of the join
        jt - join type
        Returns:
        the resulting fetch join
      • fetch

        <Y> Fetch<X,Y> fetch(PluralAttribute<? super X,?,Y> attribute)
        Create a fetch join to the specified collection-valued attribute using an inner join.
        Parameters:
        attribute - target of the join
        Returns:
        the resulting join
      • fetch

        <Y> Fetch<X,Y> fetch(PluralAttribute<? super X,?,Y> attribute,
                             JoinType jt)
        Create a fetch join to the specified collection-valued attribute using the given join type.
        Parameters:
        attribute - target of the join
        jt - join type
        Returns:
        the resulting join
      • fetch

        <X,Y> Fetch<X,Y> fetch(String attributeName)
        Create a fetch join to the specified attribute using an inner join.
        Parameters:
        attributeName - name of the attribute for the target of the join
        Returns:
        the resulting fetch join
        Throws:
        IllegalArgumentException - if attribute of the given name does not exist
      • fetch

        <X,Y> Fetch<X,Y> fetch(String attributeName,
                               JoinType jt)
        Create a fetch join to the specified attribute using the given join type.
        Parameters:
        attributeName - name of the attribute for the target of the join
        jt - join type
        Returns:
        the resulting fetch join
        Throws:
        IllegalArgumentException - if attribute of the given name does not 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

07/10/2025 04:12:10 Cette version de la page est en cache (à la date du 07/10/2025 04:12:10) 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/FetchParent.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/en/java/, Interface FetchParent

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.