FetchGroupBuilder<T> |
FetchGroupBuilder.fetch(String path) |
Fetch all the properties at the given path.
|
FetchGroupBuilder<T> |
FetchGroupBuilder.fetch(String path,
FetchGroup<?> nestedGroup) |
Fetch the path with the nested fetch group.
|
FetchGroupBuilder<T> |
FetchGroupBuilder.fetch(String path,
String properties) |
Fetch the path including specified properties.
|
FetchGroupBuilder<T> |
FetchGroupBuilder.fetchCache(String path) |
Fetch the path including all its properties using L2 cache.
|
FetchGroupBuilder<T> |
FetchGroupBuilder.fetchCache(String path,
String properties) |
Fetch the path including specified properties using L2 cache.
|
FetchGroupBuilder<T> |
FetchGroupBuilder.fetchLazy(String path) |
Fetch the path including all its properties lazily.
|
FetchGroupBuilder<T> |
FetchGroupBuilder.fetchLazy(String path,
FetchGroup<?> nestedGroup) |
Fetch the path lazily with the nested fetch group.
|
FetchGroupBuilder<T> |
FetchGroupBuilder.fetchLazy(String path,
String properties) |
Fetch the path including specified properties lazily.
|
FetchGroupBuilder<T> |
FetchGroupBuilder.fetchQuery(String path) |
Fetch the path including all its properties using a query join.
|
FetchGroupBuilder<T> |
FetchGroupBuilder.fetchQuery(String path,
FetchGroup<?> nestedGroup) |
Fetch the path using a query join with the nested fetch group.
|
FetchGroupBuilder<T> |
FetchGroupBuilder.fetchQuery(String path,
String properties) |
Fetch the path including specified properties using a query join.
|
static <T> FetchGroupBuilder<T> |
FetchGroup.of(Class<T> cls) |
Return the FetchGroupBuilder with the given select clause that we can add fetch clauses to.
|
FetchGroupBuilder<T> |
FetchGroupBuilder.select(String select) |
Specify specific properties to select (top level properties).
|