com.droidlogix.sqlite.datahandler.ISqliteObjectAssembler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlite-datahandler Show documentation
Show all versions of sqlite-datahandler Show documentation
A Helper Library for SQLite
package com.droidlogix.sqlite.datahandler;
import java.sql.ResultSet;
import java.sql.SQLException;
/**
* Created by John Pili on 11/02/17.
*/
public interface ISqliteObjectAssembler
{
/**
* This method is used for converting SQLite result into POJO via dependecy injection
* @param resultSet
* @return
* @throws SQLException
*/
T assemble(ResultSet resultSet) throws SQLException;
}