Uses of Class
com.google.cloud.datastore.Cursor
-
Packages that use Cursor Package Description com.google.cloud.datastore A client for Cloud Datastore – A highly-scalable NoSQL database for web and mobile applications. -
-
Uses of Cursor in com.google.cloud.datastore
Methods in com.google.cloud.datastore that return Cursor Modifier and Type Method Description static Cursor
Cursor. copyFrom(byte[] bytes)
static Cursor
Cursor. fromUrlSafe(String urlSafe)
Create aCursor
given its URL safe encoded form.Cursor
QueryResults. getCursorAfter()
Returns the Cursor for the point after the value returned in the lastIterator.next()
call.Cursor
StructuredQuery. getEndCursor()
Returns the end cursor for this query.Cursor
StructuredQuery. getStartCursor()
Returns the start cursor for this query.Methods in com.google.cloud.datastore with parameters of type Cursor Modifier and Type Method Description GqlQuery.Builder<V>
GqlQuery.Builder. addBinding(Cursor cursor)
Sets a new positional binding.GqlQuery.Builder<V>
GqlQuery.Builder. setBinding(String name, Cursor cursor)
Sets a new named binding.StructuredQuery.Builder<V>
StructuredQuery.Builder. setEndCursor(Cursor endCursor)
Sets the end cursor for the query.StructuredQuery.Builder<V>
StructuredQuery.Builder. setStartCursor(Cursor startCursor)
Sets the start cursor for the query.
-