Entity |
BaseDatastoreBatchWriter.add(FullEntity<?> entity) |
|
List<Entity> |
BaseDatastoreBatchWriter.add(FullEntity<?>... entities) |
|
Entity |
Batch.add(FullEntity<?> entity) |
Datastore add operation: inserts the provided entity.
|
List<Entity> |
Batch.add(FullEntity<?>... entities) |
Datastore add operation: inserts the provided entities.
|
Entity |
Datastore.add(FullEntity<?> entity) |
Datastore add operation: inserts the provided entity.
|
List<Entity> |
Datastore.add(FullEntity<?>... entities) |
Datastore add operation: inserts the provided entities.
|
Entity |
DatastoreBatchWriter.add(FullEntity<?> entity) |
Datastore add operation: inserts the provided entity.
|
List<Entity> |
DatastoreBatchWriter.add(FullEntity<?>... entities) |
Datastore add operation: inserts the provided entities.
|
Entity |
DatastoreWriter.add(FullEntity<?> entity) |
Datastore add operation: inserts the provided entity.
|
List<Entity> |
DatastoreWriter.add(FullEntity<?>... entities) |
Datastore add operation: inserts the provided entities.
|
Entity |
Transaction.add(FullEntity<?> entity) |
Datastore add operation: inserts the provided entity.
|
List<Entity> |
Transaction.add(FullEntity<?>... entities) |
Datastore add operation: inserts the provided entities.
|
GqlQuery.Builder<V> |
GqlQuery.Builder.addBinding(FullEntity<?>... value) |
Deprecated.
|
ListValue.Builder |
ListValue.Builder.addValue(FullEntity<?> first,
FullEntity<?>... other) |
Adds the provided FullEntity values to the ListValue builder.
|
void |
BaseDatastoreBatchWriter.addWithDeferredIdAllocation(FullEntity<?>... entities) |
|
void |
DatastoreBatchWriter.addWithDeferredIdAllocation(FullEntity<?>... entities) |
Datastore add operation.
|
void |
Transaction.addWithDeferredIdAllocation(FullEntity<?>... entities) |
Datastore add operation.
|
static Entity.Builder |
Entity.newBuilder(Key key,
FullEntity<?> copyFrom) |
|
static EntityValue.Builder |
EntityValue.newBuilder(FullEntity<?> entity) |
|
static <K extends IncompleteKey> FullEntity.Builder<K> |
FullEntity.newBuilder(FullEntity<K> copyFrom) |
|
static EntityValue |
EntityValue.of(FullEntity<?> entity) |
|
static ListValue |
ListValue.of(FullEntity<?> first,
FullEntity<?>... other) |
Creates a ListValue object given a number of FullEntity values.
|
Entity |
BaseDatastoreBatchWriter.put(FullEntity<?> entity) |
|
List<Entity> |
BaseDatastoreBatchWriter.put(FullEntity<?>... entities) |
|
Entity |
Datastore.put(FullEntity<?> entity) |
A Datastore put (a.k.a upsert) operation: inserts an entity if it does not exist, updates it
otherwise.
|
List<Entity> |
Datastore.put(FullEntity<?>... entities) |
A Datastore put (a.k.a upsert) operation: creates an entity if it does not exist, updates it
otherwise.
|
Entity |
DatastoreBatchWriter.put(FullEntity<?> entity) |
A Datastore put (a.k.a upsert) operation: inserts an entity if it does not exist, updates it
otherwise.
|
List<Entity> |
DatastoreBatchWriter.put(FullEntity<?>... entities) |
A Datastore put (a.k.a upsert) operation: creates an entity if it does not exist, updates it
otherwise.
|
Entity |
DatastoreWriter.put(FullEntity<?> entity) |
A Datastore put (a.k.a upsert) operation: inserts an entity if it does not exist, updates it
otherwise.
|
List<Entity> |
DatastoreWriter.put(FullEntity<?>... entities) |
A Datastore put (a.k.a upsert) operation: creates an entity if it does not exist, updates it
otherwise.
|
Entity |
Transaction.put(FullEntity<?> entity) |
A Datastore put (a.k.a upsert) operation: inserts an entity if it does not exist, updates it
otherwise.
|
List<Entity> |
Transaction.put(FullEntity<?>... entities) |
A Datastore put (a.k.a upsert) operation: creates an entity if it does not exist, updates it
otherwise.
|
void |
BaseDatastoreBatchWriter.putWithDeferredIdAllocation(FullEntity<?>... entities) |
|
void |
DatastoreBatchWriter.putWithDeferredIdAllocation(FullEntity<?>... entities) |
Datastore put operation.
|
void |
Transaction.putWithDeferredIdAllocation(FullEntity<?>... entities) |
Datastore put operation.
|
B |
BaseEntity.Builder.set(String name,
FullEntity<?> value) |
|
B |
BaseEntity.Builder.set(String name,
FullEntity<?> first,
FullEntity<?> second,
FullEntity<?>... others) |
Sets a list property containing elements of type EntityValue .
|
GqlQuery.Builder<V> |
GqlQuery.Builder.setBinding(String name,
FullEntity<?>... value) |
Deprecated.
|