Uses of Class
com.google.cloud.datastore.Entity
-
Packages that use Entity Package Description com.google.cloud.datastore A client for Cloud Datastore – A highly-scalable NoSQL database for web and mobile applications. -
-
Uses of Entity in com.google.cloud.datastore
Fields in com.google.cloud.datastore with type parameters of type Entity Modifier and Type Field Description static Query.ResultType<Entity>
Query.ResultType. ENTITY
Methods in com.google.cloud.datastore that return Entity Modifier and Type Method Description Entity
BaseDatastoreBatchWriter. add(FullEntity<?> entity)
Entity
Batch. add(FullEntity<?> entity)
Datastore add operation: inserts the provided entity.Entity
Datastore. add(FullEntity<?> entity)
Datastore add operation: inserts the provided entity.Entity
DatastoreBatchWriter. add(FullEntity<?> entity)
Datastore add operation: inserts the provided entity.Entity
DatastoreWriter. 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()
static Entity
Entity. fromPb(Entity entityPb)
Entity
Datastore. get(Key key, ReadOption... options)
Entity
DatastoreReader. get(Key key)
Entity
Transaction. get(Key key)
Entity
BaseDatastoreBatchWriter. put(FullEntity<?> entity)
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
DatastoreBatchWriter. 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
Transaction. put(FullEntity<?> entity)
A Datastore put (a.k.a upsert) operation: inserts an entity if it does not exist, updates it otherwise.Methods in com.google.cloud.datastore that return types with arguments of type Entity Modifier and Type Method Description List<Entity>
BaseDatastoreBatchWriter. add(FullEntity<?>... entities)
List<Entity>
Batch. add(FullEntity<?>... entities)
Datastore add operation: inserts the provided entities.List<Entity>
Datastore. 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>
DatastoreWriter. 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>
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).Iterator<Entity>
Datastore. get(Iterable<Key> keys, ReadOption... options)
Iterator<Entity>
DatastoreReader. get(Key... keys)
Iterator<Entity>
Transaction. get(Key... key)
List<Entity>
BaseDatastoreBatchWriter. put(FullEntity<?>... entities)
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>
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>
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>
Transaction. put(FullEntity<?>... entities)
A Datastore put (a.k.a upsert) operation: creates an entity if it does not exist, updates it otherwise.Methods in com.google.cloud.datastore with parameters of type Entity Modifier and Type Method Description static Entity.Builder
Entity. newBuilder(Entity copyFrom)
void
BaseDatastoreBatchWriter. update(Entity... entities)
void
Datastore. update(Entity... entities)
A Datastore update operation.void
DatastoreBatchWriter. update(Entity... entities)
A Datastore update operation.void
DatastoreWriter. update(Entity... entities)
A Datastore update operation.void
Transaction. update(Entity... entities)
A Datastore update operation.
-