Uses of Interface
io.ebean.FetchGroupBuilder
| Package | Description |
|---|---|
| io.ebean | |
| io.ebean.service |
-
Uses of FetchGroupBuilder in io.ebean
Methods in io.ebean that return FetchGroupBuilder Modifier and Type Method Description 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). -
Uses of FetchGroupBuilder in io.ebean.service
Methods in io.ebean.service that return FetchGroupBuilder Modifier and Type Method Description <T> FetchGroupBuilder<T>SpiFetchGroupService. of(Class<T> beanType)Create and return a FetchGroupBuilder starting with a select() clause.