com.rgi.common.util.jdbc.ResultSetPredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagd Show documentation
Show all versions of swagd Show documentation
SWAGD: Software to Aggregate Geospatial Data
The newest version!
package com.rgi.common.util.jdbc;
import java.sql.ResultSet;
import java.sql.SQLException;
/**
* @author Luke Lambert
*
*/
public interface ResultSetPredicate
{
/**
* Returns true if the given {@link ResultSet} satisfies the predicate, false otherwise
*
* @param resultSet
* The result set containing the elements
* @return
* Returns true if the given {@link ResultSet} satisfies the predicate, false otherwise
*
* @throws SQLException
* Throws if an SQLException occurs
*/
public boolean apply(final ResultSet resultSet) throws SQLException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy