Class DefaultCursor.CursorIterator
- java.lang.Object
-
- org.apache.ibatis.cursor.defaults.DefaultCursor.CursorIterator
-
- All Implemented Interfaces:
java.util.Iterator<T>
- Enclosing class:
- DefaultCursor<T>
protected class DefaultCursor.CursorIterator extends java.lang.Object implements java.util.Iterator<T>
-
-
Field Summary
Fields Modifier and Type Field Description (package private) int
iteratorIndex
Index of objects returned using next(), and as such, visible to users.(package private) T
object
Holder for the next object to be returned.
-
Constructor Summary
Constructors Modifier Constructor Description protected
CursorIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
T
next()
void
remove()
-
-
-
Field Detail
-
object
T object
Holder for the next object to be returned.
-
iteratorIndex
int iteratorIndex
Index of objects returned using next(), and as such, visible to users.
-
-