dev.mccue.jdbc.ResultSetGetter Maven / Gradle / Ivy
The newest version!
package dev.mccue.jdbc;
import java.sql.ResultSet;
import java.sql.SQLException;
/**
* Gets a value from a result set.
* @param The type of value it will get.
*/
@FunctionalInterface
public interface ResultSetGetter {
/**
* Extract information from a result set.
* @param rs The result set to extract from.
* @return The extracted data.
*/
T get(ResultSet rs) throws SQLException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy