Interface QueryResultList<T> (2.0.0)

public interface QueryResultList<T> extends List<T>

A list of results returned by executing a Query.

Implements

List<T>

Type Parameter

NameDescription
T

Methods

getCursor()

public abstract Cursor getCursor()

Gets a Cursor that points to the result immediately after the last one in this list.

Returns
TypeDescription
Cursor

a Cursor or null if this query result cannot be resumed. (Note that a Cursor is returned even if the end of the result list has been reached).

getIndexList()

public abstract List<Index> getIndexList()

Get the indexes used to perform the query.

Returns
TypeDescription
List<Index>

A list of index references, with no duplicates, or null if the indexes are not known.