GqlQuery.Builder<V> |
GqlQuery.Builder.addBinding(Key... value) |
Sets a new positional binding.
|
ListValue.Builder |
ListValue.Builder.addValue(Key first,
Key... other) |
Adds the provided Key values to the ListValue builder.
|
void |
BaseDatastoreBatchWriter.delete(Key... keys) |
|
void |
Datastore.delete(Key... keys) |
A datastore delete operation.
|
void |
DatastoreBatchWriter.delete(Key... keys) |
A datastore delete operation.
|
void |
DatastoreWriter.delete(Key... keys) |
A datastore delete operation.
|
void |
Transaction.delete(Key... keys) |
A datastore delete operation.
|
static StructuredQuery.PropertyFilter |
StructuredQuery.PropertyFilter.eq(String property,
Key value) |
|
List<Entity> |
DatastoreReader.fetch(Key... keys) |
Returns a list with a value for each given key (ordered by input).
|
List<Entity> |
Transaction.fetch(Key... keys) |
Returns a list with a value for each given key (ordered by input).
|
static StructuredQuery.PropertyFilter |
StructuredQuery.PropertyFilter.ge(String property,
Key value) |
|
Entity |
Datastore.get(Key key,
ReadOption... options) |
Returns an Entity for the given Key or null if it doesn't exist.
|
Entity |
DatastoreReader.get(Key key) |
Returns an Entity for the given Key or null if it doesn't exist.
|
Iterator<Entity> |
DatastoreReader.get(Key... keys) |
Returns an Entity for each given Key that exists in the Datastore.
|
Entity |
Transaction.get(Key key) |
Returns an Entity for the given Key or null if it doesn't exist.
|
Iterator<Entity> |
Transaction.get(Key... key) |
Returns an Entity for each given Key that exists in the Datastore.
|
static StructuredQuery.PropertyFilter |
StructuredQuery.PropertyFilter.gt(String property,
Key value) |
|
static StructuredQuery.PropertyFilter |
StructuredQuery.PropertyFilter.hasAncestor(Key key) |
|
static StructuredQuery.PropertyFilter |
StructuredQuery.PropertyFilter.le(String property,
Key value) |
|
static StructuredQuery.PropertyFilter |
StructuredQuery.PropertyFilter.lt(String property,
Key value) |
|
static StructuredQuery.PropertyFilter |
StructuredQuery.PropertyFilter.neq(String property,
Key value) |
|
static Entity.Builder |
Entity.newBuilder(Key key) |
|
static Entity.Builder |
Entity.newBuilder(Key key,
FullEntity<?> copyFrom) |
|
static IncompleteKey.Builder |
IncompleteKey.newBuilder(Key parent,
String kind) |
|
static Key.Builder |
Key.newBuilder(Key copyFrom) |
|
static Key.Builder |
Key.newBuilder(Key parent,
String kind,
long id) |
|
static Key.Builder |
Key.newBuilder(Key parent,
String kind,
String name) |
|
static KeyValue.Builder |
KeyValue.newBuilder(Key key) |
|
static KeyValue |
KeyValue.of(Key key) |
|
static ListValue |
ListValue.of(Key first,
Key... other) |
Creates a ListValue object given a number of Key values.
|
List<Key> |
Datastore.reserveIds(Key... keys) |
Reserve one or more keys, preventing them from being automatically allocated by Datastore.
|
B |
BaseEntity.Builder.set(String name,
Key value) |
|
B |
BaseEntity.Builder.set(String name,
Key first,
Key second,
Key... others) |
Sets a list property containing elements of type KeyValue .
|
GqlQuery.Builder<V> |
GqlQuery.Builder.setBinding(String name,
Key... value) |
Sets a new named binding.
|
Entity.Builder |
Entity.Builder.setKey(Key key) |
|