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) intiteratorIndexIndex of objects returned using next(), and as such, visible to users.(package private) TobjectHolder for the next object to be returned.
-
Constructor Summary
Constructors Modifier Constructor Description protectedCursorIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Tnext()voidremove()
-
-
-
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.
-
-