Package org.datanucleus.store.query
Class CandidateIdsQueryResult.ResultIterator
- java.lang.Object
-
- org.datanucleus.store.query.AbstractQueryResultIterator<E>
-
- org.datanucleus.store.query.CandidateIdsQueryResult.ResultIterator
-
- All Implemented Interfaces:
Iterator<E>,ListIterator<E>
- Enclosing class:
- CandidateIdsQueryResult<E>
public class CandidateIdsQueryResult.ResultIterator extends AbstractQueryResultIterator<E>
Iterator for results for this query.
-
-
Constructor Summary
Constructors Constructor Description ResultIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()booleanhasPrevious()Enext()intnextIndex()Eprevious()intpreviousIndex()-
Methods inherited from class org.datanucleus.store.query.AbstractQueryResultIterator
add, remove, set
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfaceIterator<E>- Specified by:
hasNextin interfaceListIterator<E>- Specified by:
hasNextin classAbstractQueryResultIterator<E>
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPreviousin interfaceListIterator<E>- Specified by:
hasPreviousin classAbstractQueryResultIterator<E>
-
next
public E next()
- Specified by:
nextin interfaceIterator<E>- Specified by:
nextin interfaceListIterator<E>- Specified by:
nextin classAbstractQueryResultIterator<E>
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfaceListIterator<E>- Specified by:
nextIndexin classAbstractQueryResultIterator<E>
-
previous
public E previous()
- Specified by:
previousin interfaceListIterator<E>- Specified by:
previousin classAbstractQueryResultIterator<E>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfaceListIterator<E>- Specified by:
previousIndexin classAbstractQueryResultIterator<E>
-
-