public interface Cursor<T> extends RecordIterable<T>
A collection of NitriteIds of the database records,
as a result of a find operation.
| Modifier and Type | Method and Description |
|---|---|
<P> RecordIterable<P> |
project(java.lang.Class<P> projectionType)
Projects the result of one type into an
Iterable of other type. |
firstOrDefault, hasMore, size, toList, totalCountreset<P> RecordIterable<P> project(java.lang.Class<P> projectionType)
Projects the result of one type into an Iterable of other type.
P - the type of the target objects.projectionType - the projection type.Iterable of projected objects.