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 CursorCursor. fromWebSafeString(String encodedCursor)Decodes the given encoded cursor@Nullable CursorFetchOptions. getCursor()Deprecated.useFetchOptions.getStartCursor()insteadCursorQueryResultIterator. getCursor()Gets aCursorthat points to theEntityimmediately after the lastEntitythat was retrieved byIterator.next().CursorQueryResultList. getCursor()Gets aCursorthat points to the result immediately after the last one in this list.@Nullable CursorFetchOptions. getEndCursor()Returns the end cursor, ornullif no end cursor was provided.@Nullable CursorFetchOptions. getStartCursor()Returns the start cursor, ornullif no start cursor was provided.CursorCursor. 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 FetchOptionsFetchOptions. cursor(Cursor cursor)Deprecated.useFetchOptions.startCursorinstead.FetchOptionsFetchOptions. endCursor(Cursor endCursor)Sets the cursor at which to end the query.FetchOptionsFetchOptions. startCursor(Cursor startCursor)Sets the cursor at which to start the query.static FetchOptionsFetchOptions.Builder. withCursor(Cursor cursor)Deprecated.static FetchOptionsFetchOptions.Builder. withEndCursor(Cursor endCursor)Create aFetchOptionswith the given end cursor.static FetchOptionsFetchOptions.Builder. withStartCursor(Cursor startCursor)Create aFetchOptionswith the given start cursor.
-