Uses of Class
com.d3x.core.db.Database
-
Packages that use Database Package Description com.d3x.core.db -
-
Uses of Database in com.d3x.core.db
Fields in com.d3x.core.db declared as Database Modifier and Type Field Description private DatabaseDatabaseOperation. dbThe database this operation is associated withprivate DatabaseDatabaseSelect. dbprivate DatabaseDatabaseUpdate. dbFields in com.d3x.core.db with type parameters of type Database Modifier and Type Field Description private com.d3x.core.util.Consumers<Database>Database. onStartMethods in com.d3x.core.db that return Database Modifier and Type Method Description (package private) DatabaseDatabaseOperation. getDb()The database this operation is associated withstatic DatabaseDatabase. of(DatabaseConfig config)Returns a newly created Database instance based on args providedstatic DatabaseDatabase. of(DatabaseConfig config, java.util.function.Consumer<Database> setup)Returns a newly created Database instance based on args providedDatabaseDatabase. onStart(java.util.function.Consumer<Database> onStart)Adds a onStart consumer to be called when the Database starts upMethod parameters in com.d3x.core.db with type arguments of type Database Modifier and Type Method Description static DatabaseDatabase. of(DatabaseConfig config, java.util.function.Consumer<Database> setup)Returns a newly created Database instance based on args providedDatabaseDatabase. onStart(java.util.function.Consumer<Database> onStart)Adds a onStart consumer to be called when the Database starts upConstructors in com.d3x.core.db with parameters of type Database Constructor Description DatabaseExecute(Database db, java.lang.String sql)ConstructorDatabaseOperation(Database db)ConstructorDatabaseSelect(Database db, java.lang.Class<T> type)ConstructorDatabaseUpdate(Database db, java.lang.Class<T> dataType, DatabaseUpdate.Type type)Constructor
-