Uses of Interface
com.googlecode.objectify.cmd.Query
Packages that use Query
-
Uses of Query in com.googlecode.objectify.cmd
Subinterfaces of Query in com.googlecode.objectify.cmdModifier and TypeInterfaceDescriptioninterface
LoadType<T>
Once you have narrowed your interest to a type (viaload().type(SomeType.class)
), the command pattern can diverge into two directions: Either defining a parent or ids (which corresponds to a batch get) or calling query-related methods (which will produce a query).Methods in com.googlecode.objectify.cmd that return QueryModifier and TypeMethodDescriptionQuery.chunk
(int value) Query.chunkAll()
Query.distinct
(boolean value) Query.endAt
(com.google.cloud.datastore.Cursor value) Query.filter
(com.google.cloud.datastore.StructuredQuery.Filter filter) Create a filter based on the raw low-level Filter.Create an arbitrarily complex filter.Create a filter based on the specified condition and value, using the same syntax as the GAE/Python query class.Query.hybrid
(boolean force) Query.limit
(int value) Query.offset
(int value) Sorts based on a property.Query.orderKey
(boolean descending) Shorthand fororder("__key__")
ororder("-__key__")
Query.startAt
(com.google.cloud.datastore.Cursor value) -
Uses of Query in com.googlecode.objectify.impl
Classes in com.googlecode.objectify.impl that implement Query