Uses of Record Class
io.john.amiscaray.quak.data.query.DatabaseQuery
Packages that use DatabaseQuery
-
Uses of DatabaseQuery in io.john.amiscaray.quak.data
Methods in io.john.amiscaray.quak.data with parameters of type DatabaseQueryModifier and TypeMethodDescription<T> voidDatabaseProxy.deleteAll(Class<T> entityType, DatabaseQuery deletionCriteria) Deletes all entities from the database matching a given query.<T> List<T> DatabaseProxy.queryAll(Class<T> entityType, DatabaseQuery databaseQuery) Retrieves all entities of a given type from the database which match a given query.final <T,F> void DatabaseProxy.updateAll(Class<T> entityType, DatabaseQuery updateCriteria, FieldUpdate<F> fieldUpdate) Updates all entities from the database matching some update criteria.<T,V> void DatabaseProxy.updateAll(Class<T> entityType, String fieldToUpdate, DatabaseQuery updateCriteria, V newValue) Updates entities based on a given criteria to a new value. -
Uses of DatabaseQuery in io.john.amiscaray.quak.data.query
Methods in io.john.amiscaray.quak.data.query that return DatabaseQuery