com.objectsql.handler.ResultSetFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of object-sql Show documentation
Show all versions of object-sql Show documentation
Lightweight Object SQL Relational Mapping (OSRM)
package com.objectsql.handler;
import java.sql.ResultSet;
@FunctionalInterface
public interface ResultSetFunction {
void process(ResultSet resultSet);
}