Uses of Interface
jakarta.persistence.criteria.Fetch
Packages that use Fetch
Package
Description
Jakarta Persistence Criteria API
The JPA-standard criteria query API defines all the operations needed express
any query written in standard JPQL.
Nodes representing path expressions in the SQM tree.
Nodes representing root entities and joins in the SQM tree.
-
Uses of Fetch in jakarta.persistence.criteria
Methods in jakarta.persistence.criteria that return FetchModifier and TypeMethodDescriptionFetchParent.fetch(PluralAttribute<? super X, ?, Y> attribute) Create a fetch join to the specified collection-valued attribute using an inner join.FetchParent.fetch(PluralAttribute<? super X, ?, Y> attribute, JoinType jt) Create a fetch join to the specified collection-valued attribute using the given join type.FetchParent.fetch(SingularAttribute<? super X, Y> attribute) Create a fetch join to the specified single-valued attribute using an inner join.FetchParent.fetch(SingularAttribute<? super X, Y> attribute, JoinType jt) Create a fetch join to the specified single-valued attribute using the given join type.<X,Y> Fetch<X, Y> Create a fetch join to the specified attribute using an inner join.<X,Y> Fetch<X, Y> Create a fetch join to the specified attribute using the given join type.Methods in jakarta.persistence.criteria that return types with arguments of type FetchModifier and TypeMethodDescriptionFetchParent.getFetches()Return the fetch joins that have been made from this type. -
Uses of Fetch in org.hibernate.query.criteria
Subinterfaces of Fetch in org.hibernate.query.criteriaMethods in org.hibernate.query.criteria that return types with arguments of type Fetch -
Uses of Fetch in org.hibernate.query.sqm.tree.domain
Classes in org.hibernate.query.sqm.tree.domain that implement FetchModifier and TypeClassDescriptionclassModels a join based on a mapped attribute reference.classAbstractSqmPluralJoin<O,C, E> classSqmBagJoin<O,E> classSqmCorrelatedBagJoin<O,T> classclassSqmCorrelatedMapJoin<O,K, V> classSqmCorrelatedSetJoin<O,T> classclassSqmListJoin<O,E> classSqmMapJoin<O,K, V> classSqmSetJoin<O,E> classSqmSingularJoin<O,T> classSqmTreatedBagJoin<O,T, S extends T> classSqmTreatedListJoin<O,T, S extends T> classSqmTreatedMapJoin<O,K, V, S extends V> classSqmTreatedSetJoin<O,T, S extends T> classSqmTreatedSingularJoin<O,T, S extends T> Methods in org.hibernate.query.sqm.tree.domain that return types with arguments of type Fetch -
Uses of Fetch in org.hibernate.query.sqm.tree.from
Subinterfaces of Fetch in org.hibernate.query.sqm.tree.fromModifier and TypeInterfaceDescriptioninterfaceSqmAttributeJoin<O,T> Models a join based on a mapped attribute reference.