Uses of Interface
com.github.tadukoo.database.mysql.pojo.DatabasePojo
Packages that use DatabasePojo
Package
Description
Contains
DatabasePojo, which can be used to store and
retrieve the pojo values from a Database-
Uses of DatabasePojo in com.github.tadukoo.database.mysql.pojo
Classes in com.github.tadukoo.database.mysql.pojo that implement DatabasePojoModifier and TypeClassDescriptionclassAbstract Database Pojo is a simple implementation of aDatabasePojoto use to easily make pojos that can be stored and retrieved from aDatabaseFields in com.github.tadukoo.database.mysql.pojo with type parameters of type DatabasePojoModifier and TypeFieldDescriptionprivate Class<? extends DatabasePojo>SubPojoDefinition.SubPojoDefinitionBuilder.typeThe class used for the sub pojo, in case the pojo has to create a new instance of itprivate final Class<? extends DatabasePojo>SubPojoDefinition.typeThe class used for the sub pojo, in case the pojo has to create a new instance of itMethods in com.github.tadukoo.database.mysql.pojo with type parameters of type DatabasePojoModifier and TypeMethodDescriptiondefault <P extends DatabasePojo>
List<P>Performs a search for data on pojos of this type in the givenDatabase.default <P extends DatabasePojo>
List<P>DatabasePojo.doSearch(Database database, Class<P> clazz, Collection<String> subPojosToUse) Performs a search for data on pojos of this type in the givenDatabase.default <P extends DatabasePojo>
com.github.tadukoo.util.functional.function.ThrowingFunction<ResultSet,List<P>, SQLException> DatabasePojo.getResultSetListFunc(Class<P> clazz) Methods in com.github.tadukoo.database.mysql.pojo that return types with arguments of type DatabasePojoMethods in com.github.tadukoo.database.mysql.pojo with parameters of type DatabasePojoModifier and TypeMethodDescriptiondefault voidDatabasePojo.addSubPojo(SubPojoDefinition subPojoDef, DatabasePojo subPojo, ForeignKeyConstraint foreignKey) Adds the info for a subPojo using the given parametersMethod parameters in com.github.tadukoo.database.mysql.pojo with type arguments of type DatabasePojoModifier and TypeMethodDescriptionSubPojoDefinition.SubPojoDefinitionBuilder.typeAndJunction(Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) SubPojoDefinition.TypeAndJunction.typeAndJunction(Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) Constructor parameters in com.github.tadukoo.database.mysql.pojo with type arguments of type DatabasePojoModifierConstructorDescriptionprivateSubPojoDefinition(String key, String idCol, Class<? extends DatabasePojo> type, com.github.tadukoo.util.tuple.Pair<ColumnRef, ColumnRef> junction) Constructs a newSubPojoDefinitionusing the given parameters