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 aQuery
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Cursor
getCursor()
Gets aCursor
that points to the result immediately after the last one in this list.List<Index>
getIndexList()
Get the indexes used to perform the query.-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream
-
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
-