nyla.solutions.dao.ResultSetObjectCreator Maven / Gradle / Ivy
package nyla.solutions.dao;
import java.sql.ResultSet;
import nyla.solutions.global.patterns.creational.RowObjectCreator;
/**
* Row mapper for a result set
* @author Gregory Green
*
* @param the object class
*/
public interface ResultSetObjectCreator extends RowObjectCreator
{
/**
*
* @param rs the result set
* @param index the current index
* @return the object instance
*/
ObjectType create(ResultSet rs, int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy