Uses of Class
com.google.appengine.api.datastore.Cursor
Packages that use Cursor
Package
Description
-
Uses of Cursor in com.google.appengine.api.datastore
Methods in com.google.appengine.api.datastore that return CursorModifier and TypeMethodDescriptionstatic Cursor
Cursor.fromWebSafeString
(String encodedCursor) Decodes the given encoded cursor@Nullable Cursor
FetchOptions.getCursor()
Deprecated.QueryResultIterator.getCursor()
Gets aCursor
that points to theEntity
immediately after the lastEntity
that was retrieved byIterator.next()
.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.reverse()
Deprecated.It is no longer necessary to callreverse()
on cursors.Methods in com.google.appengine.api.datastore with parameters of type CursorModifier and TypeMethodDescriptionDeprecated.useFetchOptions.startCursor
instead.Sets the cursor at which to end the query.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.
FetchOptions.getStartCursor()
instead