pers.clare.hisql.function.ResultSetCallback Maven / Gradle / Ivy
The newest version!
package pers.clare.hisql.function;
import java.sql.ResultSet;
import java.sql.SQLException;
@SuppressWarnings("RedundantThrows")
@FunctionalInterface
public interface ResultSetCallback {
R apply(ResultSet resultSet) throws SQLException;
}