Package org.sql2o
Class ResultSetIteratorBase<T>
java.lang.Object
org.sql2o.ResultSetIteratorBase<T>
- Type Parameters:
T
- the type of the objects that this iterator will return
- All Implemented Interfaces:
Iterator<T>
- Direct Known Subclasses:
PojoResultSetIterator
,TableResultSetIterator
Iterator for a
ResultSet
. Tricky part here is getting hasNext()
to work properly, meaning it can be called multiple times without calling next()
.- Author:
- aldenquimby@gmail.com
-
Field Summary
Modifier and TypeFieldDescriptionprotected boolean
protected ResultSetMetaData
protected Quirks
protected ResultSet
-
Constructor Summary
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Field Details
-
rs
-
isCaseSensitive
protected boolean isCaseSensitive -
quirks
-
meta
-
-
Constructor Details
-
ResultSetIteratorBase
-
-
Method Details