Uses of Interface
io.ebean.FetchGroup
-
Packages that use FetchGroup Package Description io.ebean io.ebean.service -
-
Uses of FetchGroup in io.ebean
Methods in io.ebean that return FetchGroup Modifier and Type Method Description FetchGroup<T>FetchGroupBuilder. build()Build and return the FetchGroup.static <T> FetchGroup<T>FetchGroup. of(Class<T> cls, String select)Return the FetchGroup with the given select clause.Methods in io.ebean with parameters of type FetchGroup Modifier and Type Method Description FetchGroupBuilder<T>FetchGroupBuilder. fetch(String path, FetchGroup<?> nestedGroup)Fetch the path with the nested fetch group.FetchGroupBuilder<T>FetchGroupBuilder. fetchLazy(String path, FetchGroup<?> nestedGroup)Fetch the path lazily with the nested fetch group.FetchGroupBuilder<T>FetchGroupBuilder. fetchQuery(String path, FetchGroup<?> nestedGroup)Fetch the path using a query join with the nested fetch group.Query<T>ExpressionList. select(FetchGroup<T> fetchGroup)Apply the fetchGroup which defines what part of the object graph to load.Query<T>Query. select(FetchGroup<T> fetchGroup)Apply the fetchGroup which defines what part of the object graph to load. -
Uses of FetchGroup in io.ebean.service
Methods in io.ebean.service that return FetchGroup Modifier and Type Method Description FetchGroup<T>SpiFetchGroupQuery. buildFetchGroup()Build the fetch group with select and fetch clauses.<T> FetchGroup<T>SpiFetchGroupService. of(Class<T> beanType, String select)Return the FetchGroup with the given select clause.
-