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. ENTITYMethods in com.google.cloud.datastore that return Entity Modifier and Type Method Description EntityBaseDatastoreBatchWriter. add(FullEntity<?> entity)EntityBatch. add(FullEntity<?> entity)Datastore add operation: inserts the provided entity.EntityDatastore. add(FullEntity<?> entity)Datastore add operation: inserts the provided entity.EntityDatastoreBatchWriter. add(FullEntity<?> entity)Datastore add operation: inserts the provided entity.EntityDatastoreWriter. add(FullEntity<?> entity)Datastore add operation: inserts the provided entity.EntityTransaction. add(FullEntity<?> entity)Datastore add operation: inserts the provided entity.EntityEntity.Builder. build()static EntityEntity. fromPb(Entity entityPb)EntityDatastore. get(Key key, ReadOption... options)EntityDatastoreReader. get(Key key)EntityTransaction. get(Key key)EntityBaseDatastoreBatchWriter. put(FullEntity<?> entity)EntityDatastore. put(FullEntity<?> entity)A Datastore put (a.k.a upsert) operation: inserts an entity if it does not exist, updates it otherwise.EntityDatastoreBatchWriter. put(FullEntity<?> entity)A Datastore put (a.k.a upsert) operation: inserts an entity if it does not exist, updates it otherwise.EntityDatastoreWriter. put(FullEntity<?> entity)A Datastore put (a.k.a upsert) operation: inserts an entity if it does not exist, updates it otherwise.EntityTransaction. 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.BuilderEntity. newBuilder(Entity copyFrom)voidBaseDatastoreBatchWriter. update(Entity... entities)voidDatastore. update(Entity... entities)A Datastore update operation.voidDatastoreBatchWriter. update(Entity... entities)A Datastore update operation.voidDatastoreWriter. update(Entity... entities)A Datastore update operation.voidTransaction. update(Entity... entities)A Datastore update operation.
-