pers.clare.hisql.function.ResultSetValueConverter Maven / Gradle / Ivy
The newest version!
package pers.clare.hisql.function;
import java.sql.ResultSet;
import java.sql.SQLException;
@FunctionalInterface
public interface ResultSetValueConverter {
T apply(ResultSet resultSet, int index) throws SQLException;
}