
com.j256.ormlite.dao.CloseableIterator Maven / Gradle / Ivy
package com.j256.ormlite.dao;
import java.sql.SQLException;
import java.util.Iterator;
/**
* Extension to Iterator to provide a close() method. This should be in the JDK.
*
* @author graywatson
*/
public interface CloseableIterator extends Iterator {
/**
* Close any underlying SQL statements.
*/
public void close() throws SQLException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy