Package | Description |
---|---|
com.google.cloud.datastore |
A client for Cloud Datastore – A highly-scalable NoSQL database for web and mobile applications.
|
Modifier and Type | Field and Description |
---|---|
static Query.ResultType<Entity> |
Query.ResultType.ENTITY |
Modifier and Type | Method and Description |
---|---|
Entity |
Datastore.add(FullEntity<?> entity)
Datastore add operation: inserts the provided entity.
|
Entity |
DatastoreWriter.add(FullEntity<?> entity)
Datastore add operation: inserts the provided entity.
|
Entity |
BaseDatastoreBatchWriter.add(FullEntity<?> entity) |
Entity |
Batch.add(FullEntity<?> entity)
Datastore add operation: inserts the provided entity.
|
Entity |
DatastoreBatchWriter.add(FullEntity<?> entity)
Datastore add operation: inserts the provided entity.
|
Entity |
Transaction.add(FullEntity<?> entity)
Datastore add operation: inserts the provided entity.
|
Entity |
Entity.Builder.build() |
Entity |
Transaction.get(Key key)
|
Entity |
DatastoreReader.get(Key key)
|
Entity |
Datastore.get(Key key,
ReadOption... options)
|
Entity |
Datastore.put(FullEntity<?> entity)
A Datastore put (a.k.a upsert) operation: inserts 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.
|
Entity |
BaseDatastoreBatchWriter.put(FullEntity<?> entity) |
Entity |
DatastoreBatchWriter.put(FullEntity<?> entity)
A Datastore put (a.k.a upsert) operation: inserts 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.
|
Modifier and Type | Method and Description |
---|---|
List<Entity> |
Datastore.add(FullEntity<?>... entities)
Datastore add operation: inserts the provided entities.
|
List<Entity> |
DatastoreWriter.add(FullEntity<?>... entities)
Datastore add operation: inserts the provided entities.
|
List<Entity> |
BaseDatastoreBatchWriter.add(FullEntity<?>... entities) |
List<Entity> |
Batch.add(FullEntity<?>... entities)
Datastore add operation: inserts the provided entities.
|
List<Entity> |
DatastoreBatchWriter.add(FullEntity<?>... entities)
Datastore add operation: inserts the provided entities.
|
List<Entity> |
Transaction.add(FullEntity<?>... entities)
Datastore add operation: inserts the provided entities.
|
List<Entity> |
Datastore.fetch(Iterable<Key> keys,
ReadOption... options)
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).
|
List<Entity> |
DatastoreReader.fetch(Key... keys)
Returns a list with a value for each given key (ordered by input).
|
Iterator<Entity> |
Datastore.get(Iterable<Key> keys,
ReadOption... options)
|
Iterator<Entity> |
Transaction.get(Key... key)
|
Iterator<Entity> |
DatastoreReader.get(Key... keys)
|
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.
|
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.
|
List<Entity> |
BaseDatastoreBatchWriter.put(FullEntity<?>... entities) |
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.
|
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.
|
Modifier and Type | Method and Description |
---|---|
static Entity.Builder |
Entity.newBuilder(Entity copyFrom) |
void |
Datastore.update(Entity... entities)
A Datastore update operation.
|
void |
DatastoreWriter.update(Entity... entities)
A Datastore update operation.
|
void |
BaseDatastoreBatchWriter.update(Entity... entities) |
void |
DatastoreBatchWriter.update(Entity... entities)
A Datastore update operation.
|
void |
Transaction.update(Entity... entities)
A Datastore update operation.
|
Copyright © 2019 Google LLC. All rights reserved.