Interface QueryResultList<T>

Type Parameters:
T - the type of result returned by the query
All Superinterfaces:
Collection<T>, Iterable<T>, List<T>

public interface QueryResultList<T> extends List<T>
A list of results returned by executing a Query.
  • Method Details

    • getIndexList

      List<Index> getIndexList()
      Get the indexes used to perform the query.
      Returns:
      A list of index references, with no duplicates, or null if the indexes are not known.
    • getCursor

      Cursor getCursor()
      Gets a Cursor that points to the result immediately after the last one in this list.
      Returns:
      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).