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

Document created the 11/06/2005, last modified the 18/08/2025
Source of the printed document:https://www.gaudry.be/en/java-api-javaee-rf-javax/persistence/criteria/fetchparent.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.

References

  1. View the html document Language of the document:fr Manuel PHP : https://docs.oracle.com

These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author of this site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.