public interface QueryResultIterator<T> extends Iterator<T>A class that iterates through the results of a Query
Implements
Iterator<T>Type Parameter |
|
|---|---|
| Name | Description |
T |
|
Methods
getCursor()
public abstract Cursor getCursor()Gets a Cursor that points to the Entity immediately after the last Entity that was retrieved by #next().
| Returns | |
|---|---|
| Type | Description |
Cursor |
a Cursor or |
getIndexList()
public abstract List<Index> getIndexList()Get the indexes used to perform the query.
| Returns | |
|---|---|
| Type | Description |
List<Index> |
A list of index references, with no duplicates, or |