Uses of Interface
com.jk.data.dataaccess.core.JKPopulator
Packages that use JKPopulator
-
Uses of JKPopulator in com.jk.data.dataaccess.core
Methods in com.jk.data.dataaccess.core with parameters of type JKPopulatorModifier and TypeMethodDescription<T> TJKDataAccessImpl.find(String query, JKPopulator<T> populator, Object... params) This method executes an SQL query and maps the result to an object using a providedJKPopulator.<T> TJKDataAccessService.find(String query, JKPopulator<T> populator, Object... params) This method executes an SQL query and maps the result to an object using a providedJKPopulator.<T> TJKDataAccessImpl.findAndCacheRecord(String key, String query, JKPopulator<T> populator, Object... params) This method executes an SQL query, maps the result to an object using a provided populator, and caches the mapped object using the specified table name.<T> TJKDataAccessService.findAndCacheRecord(String tableName, String query, JKPopulator<T> populator, Object... params) This method executes an SQL query, maps the result to an object using a provided populator, and caches the mapped object using the specified table name.<T> List<T>JKDataAccessImpl.getList(String query, JKPopulator<T> populator, Object... params) This method executes an SQL query and maps the result to a list of objects using a provided populator.<T> List<T>JKDataAccessService.getList(String query, JKPopulator<T> populator, Object... params) This method executes an SQL query and maps the result to a list of objects using a provided populator.<T> List<T>JKDataAccessImpl.getListAndCache(String key, String query, JKPopulator<T> populator, Object... params) This method executes an SQL query, maps the result to a list of objects using a provided populator, and caches the result for future use.<T> List<T>JKDataAccessService.getListAndCache(String tableName, String query, JKPopulator<T> populator, Object... params) This method executes an SQL query, maps the result to a list of objects using a provided populator, and caches the result for future use.