Uses of Interface
io.objectbox.EntityInfo
-
Packages that use EntityInfo 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 EntityInfo in io.objectbox
Fields in io.objectbox declared as EntityInfo Modifier and Type Field Description EntityInfo<ENTITY>Property. entityprivate EntityInfo<T>Box. entityInfoprotected EntityInfo<T>Cursor. entityInfoFields in io.objectbox with type parameters of type EntityInfo Modifier and Type Field Description (package private) java.util.List<EntityInfo<?>>BoxStoreBuilder. entityInfoListprivate java.util.Map<java.lang.Class<?>,EntityInfo<?>>BoxStore. propertiesByClassMethods in io.objectbox that return EntityInfo Modifier and Type Method Description EntityInfo<T>Box. getEntityInfo()(package private) <T> EntityInfo<T>BoxStore. getEntityInfo(java.lang.Class<T> entityClass)EntityInfo<T>Cursor. getEntityInfo()Methods in io.objectbox with parameters of type EntityInfo Modifier and Type Method Description voidBoxStoreBuilder. entity(EntityInfo<?> entityInfo)Constructors in io.objectbox with parameters of type EntityInfo Constructor Description Cursor(Transaction tx, long cursor, EntityInfo<T> entityInfo, BoxStore boxStore)Property(EntityInfo<ENTITY> entity, int ordinal, int id, java.lang.Class<?> type, java.lang.String name)Property(EntityInfo<ENTITY> entity, int ordinal, int id, java.lang.Class<?> type, java.lang.String name, boolean isVirtual)Property(EntityInfo<ENTITY> entity, int ordinal, int id, java.lang.Class<?> type, java.lang.String name, boolean isId, boolean isVirtual, java.lang.String dbName, java.lang.Class<? extends PropertyConverter> converterClass, java.lang.Class<?> customType)Property(EntityInfo<ENTITY> entity, int ordinal, int id, java.lang.Class<?> type, java.lang.String name, boolean isId, java.lang.String dbName)Property(EntityInfo<ENTITY> entity, int ordinal, int id, java.lang.Class<?> type, java.lang.String name, boolean isId, java.lang.String dbName, java.lang.Class<? extends PropertyConverter> converterClass, java.lang.Class<?> customType) -
Uses of EntityInfo in io.objectbox.query
Methods in io.objectbox.query with parameters of type EntityInfo Modifier and Type Method Description private <TARGET> QueryBuilder<TARGET>QueryBuilder. link(RelationInfo<?,?> relationInfo, EntityInfo<?> relationOwner, EntityInfo<?> target, boolean backlink) -
Uses of EntityInfo in io.objectbox.relation
Fields in io.objectbox.relation declared as EntityInfo Modifier and Type Field Description EntityInfo<SOURCE>RelationInfo. sourceInfoEntityInfo<TARGET>RelationInfo. targetInfoConstructors in io.objectbox.relation with parameters of type EntityInfo Constructor Description RelationInfo(EntityInfo<SOURCE> sourceInfo, EntityInfo<TARGET> targetInfo, ToManyGetter<SOURCE,TARGET> toManyGetter, int relationId)Stand-alone ToMany.RelationInfo(EntityInfo<SOURCE> sourceInfo, EntityInfo<TARGET> targetInfo, ToManyGetter<SOURCE,TARGET> toManyGetter, ToManyGetter<TARGET,SOURCE> backlinkToManyGetter, int targetRelationId)ToMany as a ToMany backlinkRelationInfo(EntityInfo<SOURCE> sourceInfo, EntityInfo<TARGET> targetInfo, ToManyGetter<SOURCE,TARGET> toManyGetter, Property<TARGET> targetIdProperty, ToOneGetter<TARGET,SOURCE> backlinkToOneGetter)ToMany as a ToOne backlinkRelationInfo(EntityInfo<SOURCE> sourceInfo, EntityInfo<TARGET> targetInfo, Property<SOURCE> targetIdProperty, ToOneGetter<SOURCE,TARGET> toOneGetter)ToOne
-