me.xethh.libs.toolkits.sql.ResultSetIterable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
Library of common used tools - major focus on common tools
The newest version!
package me.xethh.libs.toolkits.sql;
import java.sql.ResultSet;
import java.util.Iterator;
import java.util.Spliterator;
import java.util.function.Consumer;
public class ResultSetIterable implements Iterable {
private ResultSet resultSet;
public ResultSetIterable(ResultSet resultset){
this.resultSet = resultset;
}
@Override
public Iterator iterator() {
return new ResultSetIterator(resultSet);
}
}