Package org.greenrobot.greendao.query
Class LazyList.LazyIterator
- java.lang.Object
-
- org.greenrobot.greendao.query.LazyList.LazyIterator
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,java.util.Iterator<E>,java.util.ListIterator<E>,CloseableListIterator<E>
protected class LazyList.LazyIterator extends java.lang.Object implements CloseableListIterator<E>
-
-
Constructor Summary
Constructors Constructor Description LazyIterator(int startLocation, boolean closeWhenDone)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(E object)voidclose()booleanhasNext()booleanhasPrevious()Enext()intnextIndex()Eprevious()intpreviousIndex()voidremove()voidset(E object)
-
-
-
Method Detail
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPreviousin interfacejava.util.ListIterator<E>
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfacejava.util.ListIterator<E>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfacejava.util.ListIterator<E>
-
hasNext
public boolean hasNext()
-
next
public E next()
-
remove
public void remove()
-
close
public void close()
- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable
-
-