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 void
add(E object)
boolean
hasNext()
boolean
hasPrevious()
FIXME: before hasPrevious(), next() must be called.E
next()
int
nextIndex()
E
previous()
FIXME: before previous(), next() must be called.int
previousIndex()
void
remove()
void
set(E object)
-
-
-
Method Detail
-
hasPrevious
public boolean hasPrevious()
FIXME: before hasPrevious(), next() must be called.- Specified by:
hasPrevious
in interfacejava.util.ListIterator<E>
-
nextIndex
public int nextIndex()
- Specified by:
nextIndex
in interfacejava.util.ListIterator<E>
-
previous
public E previous()
FIXME: before previous(), next() must be called.- Specified by:
previous
in interfacejava.util.ListIterator<E>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndex
in interfacejava.util.ListIterator<E>
-
hasNext
public boolean hasNext()
-
next
public E next()
-
-