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

    Modifier and Type Method Description
    X fetch​(String path)
    Adds an implicit join fetch to the query.
    X fetch​(String... paths)
    Adds an implicit join fetch for every given path to the query.
  • Method Details

    • fetch

      X fetch​(String path)
      Adds an implicit join fetch to the query.
      Parameters:
      path - The path to join fetch
      Returns:
      The query builder for chaining calls
    • fetch

      X fetch​(String... paths)
      Adds an implicit join fetch for every given path to the query.
      Parameters:
      paths - The paths to join fetch
      Returns:
      The query builder for chaining calls