| Deferred |
The top element in the command chain for deferred operations.
|
| DeferredDeleteIds |
Terminator methods for a delete-by-key command chain which constructs the key implicitly from
type, id, and (optionally) parent.
|
| DeferredDeleter |
Element in the command chain for deferred deleting entities from the datastore.
|
| DeferredDeleteType |
After a type is specified, the next step in a delete chain is to specify an optional parent
or a set of ids.
|
| DeferredSaver |
Element in the command chain for deferred saving of entities.
|
| DeleteIds |
Terminator methods for a delete-by-key command chain which constructs the key implicitly from
type, id, and (optionally) parent.
|
| Deleter |
The top element in the command chain for deleting entities from the datastore.
|
| DeleteType |
After a type is specified, the next step in a delete chain is to specify an optional parent
or a set of ids.
|
| Loader |
The top element in the command chain for retrieving entities from the datastore.
|
| LoadIds<T> |
Terminator methods for a fetch-by-key command chain which constructs the key implicitly from
type, id, and (optionally) parent.
|
| LoadType<T> |
Once you have narrowed your interest to a type (via load().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).
|
| Query<T> |
The basic options for a typed Query.
|
| QueryExecute<T> |
Most of the various methods that can end the definition of a query and start execution.
|
| QueryKeys<T> |
After you call Query.keys(), you are executing a keys-only query.
|
| QueryResultIterable<T> |
Replaces a class from the old GAE SDK.
|
| Saver |
The top element in the command chain for saving entities in the datastore.
|
| SimpleQuery<T> |
A restricted set of query operations that apply to both kindless queries and typed queries.
|