Uses of Class
com.google.appengine.api.datastore.FetchOptions
-
Packages that use FetchOptions Package Description com.google.appengine.api.datastore -
-
Uses of FetchOptions in com.google.appengine.api.datastore
Methods in com.google.appengine.api.datastore that return FetchOptions Modifier and Type Method Description FetchOptionsFetchOptions. chunkSize(int chunkSize)Sets the chunk size.FetchOptionsFetchOptions. cursor(Cursor cursor)Deprecated.usestartCursorinstead.FetchOptionsFetchOptions. endCursor(Cursor endCursor)Sets the cursor at which to end the query.FetchOptionsFetchOptions. limit(int limit)Sets the limit.FetchOptionsFetchOptions. offset(int offset)Sets the offset.FetchOptionsFetchOptions. prefetchSize(int prefetchSize)Sets the number of entities to prefetch.FetchOptionsFetchOptions. startCursor(Cursor startCursor)Sets the cursor at which to start the query.static FetchOptionsFetchOptions.Builder. withChunkSize(int chunkSize)Create aFetchOptionswith the given chunk size.static FetchOptionsFetchOptions.Builder. withCursor(Cursor cursor)Deprecated.static FetchOptionsFetchOptions.Builder. withDefaults()Helper method for creating aFetchOptionsinstance with default values.static FetchOptionsFetchOptions.Builder. withEndCursor(Cursor endCursor)Create aFetchOptionswith the given end cursor.static FetchOptionsFetchOptions.Builder. withLimit(int limit)Create aFetchOptionswith the given limit.static FetchOptionsFetchOptions.Builder. withOffset(int offset)Create aFetchOptionswith the given offset.static FetchOptionsFetchOptions.Builder. withPrefetchSize(int prefetchSize)Create aFetchOptionswith the given prefetch size.static FetchOptionsFetchOptions.Builder. withStartCursor(Cursor startCursor)Create aFetchOptionswith the given start cursor.Methods in com.google.appengine.api.datastore with parameters of type FetchOptions Modifier and Type Method Description Iterable<Entity>PreparedQuery. asIterable(FetchOptions fetchOptions)Iterator<Entity>PreparedQuery. asIterator(FetchOptions fetchOptions)List<Entity>PreparedQuery. asList(FetchOptions fetchOptions)QueryResultIterable<Entity>PreparedQuery. asQueryResultIterable(FetchOptions fetchOptions)Similar toPreparedQuery.asIterable(FetchOptions)except aQueryResultIterableis returned.QueryResultIterator<Entity>PreparedQuery. asQueryResultIterator(FetchOptions fetchOptions)Similar toPreparedQuery.asIterator(FetchOptions)except aQueryResultIteratoris returned.QueryResultList<Entity>PreparedQuery. asQueryResultList(FetchOptions fetchOptions)Similar toPreparedQuery.asList(com.google.appengine.api.datastore.FetchOptions)except aQueryResultIteratoris returned.intPreparedQuery. countEntities(FetchOptions fetchOptions)
-