Uses of Interface
io.ebean.bean.BeanCollection
-
Packages that use BeanCollection Package Description io.ebean.bean Enhanced beans API and Support objectsio.ebean.common Common non-public interfaces and implementation.io.ebean.event Persist and Query Event Controllers and Listeners -
-
Uses of BeanCollection in io.ebean.bean
Methods in io.ebean.bean that return BeanCollection Modifier and Type Method Description BeanCollection<E>
BeanCollection. getShallowCopy()
Return a shallow copy of this collection that is modifiable.Methods in io.ebean.bean with parameters of type BeanCollection Modifier and Type Method Description void
BeanCollection. loadFrom(BeanCollection<?> other)
Load bean from another collection.void
BeanCollectionLoader. loadMany(BeanCollection<?> collection, boolean onlyIds)
Invoke the lazy loading for this bean collection. -
Uses of BeanCollection in io.ebean.common
Classes in io.ebean.common that implement BeanCollection Modifier and Type Class Description class
BeanList<E>
List capable of lazy loading.class
BeanMap<K,E>
Map capable of lazy loading.class
BeanSet<E>
Set capable of lazy loading.Methods in io.ebean.common that return BeanCollection Modifier and Type Method Description BeanCollection<E>
BeanList. getShallowCopy()
BeanCollection<E>
BeanMap. getShallowCopy()
BeanCollection<E>
BeanSet. getShallowCopy()
Methods in io.ebean.common with parameters of type BeanCollection Modifier and Type Method Description void
BeanList. loadFrom(BeanCollection<?> other)
void
BeanMap. loadFrom(BeanCollection<?> other)
void
BeanSet. loadFrom(BeanCollection<?> other)
-
Uses of BeanCollection in io.ebean.event
Methods in io.ebean.event that return BeanCollection Modifier and Type Method Description <T> BeanCollection<T>
BeanFindController. findMany(BeanQueryRequest<T> request)
Return a List, Set or Map for the given find request.
-