Uses of Class
com.google.appengine.api.datastore.Cursor
-
Packages that use Cursor Package Description com.google.appengine.api.datastore -
-
Uses of Cursor in com.google.appengine.api.datastore
Methods in com.google.appengine.api.datastore that return Cursor Modifier and Type Method Description static Cursor
Cursor. fromWebSafeString(String encodedCursor)
Decodes the given encoded cursor@Nullable Cursor
FetchOptions. getCursor()
Deprecated.useFetchOptions.getStartCursor()
insteadCursor
QueryResultIterator. getCursor()
Gets aCursor
that points to theEntity
immediately after the lastEntity
that was retrieved byIterator.next()
.Cursor
QueryResultList. getCursor()
Gets aCursor
that points to the result immediately after the last one in this list.@Nullable Cursor
FetchOptions. getEndCursor()
Returns the end cursor, ornull
if no end cursor was provided.@Nullable Cursor
FetchOptions. getStartCursor()
Returns the start cursor, ornull
if no start cursor was provided.Cursor
Cursor. reverse()
Deprecated.It is no longer necessary to callreverse()
on cursors.Methods in com.google.appengine.api.datastore with parameters of type Cursor Modifier and Type Method Description FetchOptions
FetchOptions. cursor(Cursor cursor)
Deprecated.useFetchOptions.startCursor
instead.FetchOptions
FetchOptions. endCursor(Cursor endCursor)
Sets the cursor at which to end the query.FetchOptions
FetchOptions. startCursor(Cursor startCursor)
Sets the cursor at which to start the query.static FetchOptions
FetchOptions.Builder. withCursor(Cursor cursor)
Deprecated.static FetchOptions
FetchOptions.Builder. withEndCursor(Cursor endCursor)
Create aFetchOptions
with the given end cursor.static FetchOptions
FetchOptions.Builder. withStartCursor(Cursor startCursor)
Create aFetchOptions
with the given start cursor.
-