Uses of Class
com.google.cloud.datastore.Query
Packages that use Query
Package
Description
A client for Cloud Datastore – A highly-scalable NoSQL database for web and mobile applications.
-
Uses of Query in com.google.cloud.datastore
Classes in com.google.cloud.datastore with type parameters of type QuerySubclasses of Query in com.google.cloud.datastoreModifier and TypeClassDescriptionclassAn implementation of a Google Cloud Datastore Query that returnsAggregationResults, It can be constructed by providing a nested query (StructuredQueryorGqlQuery) to run the aggregations on and a set ofAggregation.final classAn implementation of a Google Cloud Datastore entity query that can be constructed by providing all the specific query elements.final classGqlQuery<V>A Google Cloud Datastore GQL query.final classAn implementation of a Google Cloud Datastore key-only query that can be constructed by providing all the specific query elements.final classAn implementation of a Google Cloud Datastore projection entity query that can be constructed by providing all the specific query elements.classAn implementation of a Google Cloud Datastore Query that can be constructed by providing all the specific query elements.Methods in com.google.cloud.datastore with type parameters of type QueryModifier and TypeMethodDescriptionstatic <Q extends Query<?>>
ReadOption.QueryConfig<Q>ReadOption.QueryConfig.create(Q query, ExplainOptions explainOptions) static <Q extends Query<?>>
ReadOption.QueryConfig<Q>ReadOption.QueryConfig.create(Q query, ExplainOptions explainOptions, List<ReadOption> readOptions) Methods in com.google.cloud.datastore with parameters of type QueryModifier and TypeMethodDescription<T> QueryResults<T>Datastore.run(Query<T> query, ExplainOptions explainOptions, ReadOption... options) Submits aQuerywith specifiedExplainOptionsand returns its result.<T> QueryResults<T>Datastore.run(Query<T> query, ReadOption... options) Submits aQueryand returns its result.<T> QueryResults<T>Submits aQueryand returns its result.<T> QueryResults<T>Submits aQueryand returns its result.<T> QueryResults<T>Transaction.run(Query<T> query, ExplainOptions explainOptions) -
Uses of Query in com.google.cloud.datastore.execution
Classes in com.google.cloud.datastore.execution with type parameters of type QueryModifier and TypeInterfaceDescriptioninterfaceQueryExecutor<INPUT extends Query<OUTPUT>,OUTPUT> An internal functional interface whose implementation has the responsibility to execute aQueryand returns the result.