Uses of Class
io.objectbox.Box
-
Packages that use Box Package Description io.objectbox ObjectBox is an an easy to use, object-oriented lightweight database and a full alternative to SQLite.io.objectbox.query io.objectbox.relation -
-
Uses of Box in io.objectbox
Fields in io.objectbox with type parameters of type Box Modifier and Type Field Description private java.util.Map<java.lang.Class<?>,Box<?>>BoxStore. boxesMethods in io.objectbox that return Box Modifier and Type Method Description <T> Box<T>BoxStore. boxFor(java.lang.Class<T> entityClass)Returns a Box for the given type.Methods in io.objectbox with parameters of type Box Modifier and Type Method Description static <T> voidInternalAccess. commitWriter(Box<T> box, Cursor<T> writer)static <T> Cursor<T>InternalAccess. getActiveTxCursor(Box<T> box)static <T> longInternalAccess. getActiveTxCursorHandle(Box<T> box)static <T> Cursor<T>InternalAccess. getWriter(Box<T> box) -
Uses of Box in io.objectbox.query
Fields in io.objectbox.query declared as Box Modifier and Type Field Description private Box<E>LazyList. box(package private) Box<T>Query. boxprivate Box<T>QueryBuilder. boxprivate Box<T>QueryPublisher. boxConstructors in io.objectbox.query with parameters of type Box Constructor Description LazyList(Box<E> box, long[] objectIds, boolean cacheEntities)Query(Box<T> box, long queryHandle, java.util.List<EagerRelation<T,?>> eagerRelations, QueryFilter<T> filter, java.util.Comparator<T> comparator)QueryBuilder(Box<T> box, long storeHandle, java.lang.String entityName)QueryPublisher(Query<T> query, Box<T> box) -
Uses of Box in io.objectbox.relation
Fields in io.objectbox.relation declared as Box Modifier and Type Field Description private Box<java.lang.Object>ToMany. entityBoxprivate Box<java.lang.Object>ToOne. entityBoxprivate Box<TARGET>ToMany. targetBoxprivate Box<TARGET>ToOne. targetBox
-