Uses of Interface
io.objectbox.EntityInfo
Packages that use EntityInfo
Package
Description
ObjectBox is an an easy to use, object-oriented lightweight database and a full alternative to SQLite.
-
Uses of EntityInfo in io.objectbox
Fields in io.objectbox declared as EntityInfoModifier and TypeFieldDescriptionfinal EntityInfo<ENTITY> Property.entityprivate EntityInfo<T> Box.entityInfoprotected final EntityInfo<T> Cursor.entityInfoFields in io.objectbox with type parameters of type EntityInfoModifier and TypeFieldDescription(package private) final List<EntityInfo<?>> BoxStoreBuilder.entityInfoListprivate final Map<Class<?>, EntityInfo<?>> BoxStore.propertiesByClassMethods in io.objectbox that return EntityInfoModifier and TypeMethodDescriptionBox.getEntityInfo()(package private) <T> EntityInfo<T> BoxStore.getEntityInfo(Class<T> entityClass) Cursor.getEntityInfo()Methods in io.objectbox with parameters of type EntityInfoConstructors in io.objectbox with parameters of type EntityInfoModifierConstructorDescriptionprotectedCursor(Transaction tx, long cursor, EntityInfo<T> entityInfo, BoxStore boxStore) Property(EntityInfo<ENTITY> entity, int ordinal, int id, Class<?> type, String name) Property(EntityInfo<ENTITY> entity, int ordinal, int id, Class<?> type, String name, boolean isVirtual) Property(EntityInfo<ENTITY> entity, int ordinal, int id, Class<?> type, String name, boolean isId, boolean isVirtual, String dbName, Class<? extends PropertyConverter> converterClass, Class<?> customType) Property(EntityInfo<ENTITY> entity, int ordinal, int id, Class<?> type, String name, boolean isId, String dbName) Property(EntityInfo<ENTITY> entity, int ordinal, int id, Class<?> type, String name, boolean isId, String dbName, Class<? extends PropertyConverter> converterClass, Class<?> customType) -
Uses of EntityInfo in io.objectbox.query
Methods in io.objectbox.query with parameters of type EntityInfoModifier and TypeMethodDescriptionprivate <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 EntityInfoModifier and TypeFieldDescriptionfinal EntityInfo<SOURCE> RelationInfo.sourceInfofinal EntityInfo<TARGET> RelationInfo.targetInfoConstructors in io.objectbox.relation with parameters of type EntityInfoModifierConstructorDescriptionRelationInfo(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