Package io.objectbox.query
Class LazyList.LazyIterator
- java.lang.Object
-
- io.objectbox.query.LazyList.LazyIterator
-
-
Constructor Summary
Constructors Constructor Description LazyIterator(int startLocation)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(E object)booleanhasNext()booleanhasPrevious()FIXME: before hasPrevious(), next() must be called.Enext()intnextIndex()Eprevious()FIXME: before previous(), next() must be called.intpreviousIndex()voidremove()voidset(E object)
-
-
-
Method Detail
-
hasPrevious
public boolean hasPrevious()
FIXME: before hasPrevious(), next() must be called.- Specified by:
hasPreviousin interfacejava.util.ListIterator<E>
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfacejava.util.ListIterator<E>
-
previous
public E previous()
FIXME: before previous(), next() must be called.- Specified by:
previousin interfacejava.util.ListIterator<E>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfacejava.util.ListIterator<E>
-
hasNext
public boolean hasNext()
-
next
public E next()
-
-