All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.droidlogix.sqlite.datahandler.ISqliteObjectAssembler Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy