Package com.blazebit.persistence
Interface FetchBuilder<X extends FetchBuilder<X>>
-
- Type Parameters:
X- The concrete builder type
- All Known Subinterfaces:
CriteriaBuilder<T>,FullQueryBuilder<T,X>,PaginatedCriteriaBuilder<T>
public interface FetchBuilder<X extends FetchBuilder<X>>An interface for builders that support fetching.- Since:
- 1.2.0
- Author:
- Christian Beikov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Xfetch(String path)Adds an implicit join fetch to the query.Xfetch(String... paths)Adds an implicit join fetch for every given path to the query.
-