| Package | Description | 
|---|---|
| com.google.cloud.datastore | 
 A client for Cloud Datastore – A highly-scalable NoSQL database for web and mobile applications. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
Entity
An entity is the Google Cloud Datastore persistent data object for a specific key. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
FullEntity<K> | 
FullEntity.Builder.build()  | 
<K extends IncompleteKey> | 
BaseEntity.getEntity(String name)
Returns the property value as an entity. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
protected Map<Key,FullEntity<Key>> | 
BaseDatastoreBatchWriter.toAdd()  | 
protected List<FullEntity<IncompleteKey>> | 
BaseDatastoreBatchWriter.toAddAutoId()  | 
protected Map<Key,FullEntity<Key>> | 
BaseDatastoreBatchWriter.toPut()  | 
protected Map<Key,FullEntity<Key>> | 
BaseDatastoreBatchWriter.toUpdate()  | 
| Modifier and Type | Method and Description | 
|---|---|
List<Entity> | 
DatastoreWriter.add(FullEntity<?>... entities)
Datastore add operation: inserts the provided entities. 
 | 
List<Entity> | 
BaseDatastoreBatchWriter.add(FullEntity<?>... entities)  | 
List<Entity> | 
DatastoreBatchWriter.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> | 
Batch.add(FullEntity<?>... entities)
Datastore add operation: inserts the provided entities. 
 | 
List<Entity> | 
Transaction.add(FullEntity<?>... entities)
Datastore add operation: inserts the provided entities. 
 | 
Entity | 
DatastoreWriter.add(FullEntity<?> entity)
Datastore add operation: inserts the provided entity. 
 | 
Entity | 
BaseDatastoreBatchWriter.add(FullEntity<?> entity)  | 
Entity | 
DatastoreBatchWriter.add(FullEntity<?> entity)
Datastore add operation: inserts the provided entity. 
 | 
Entity | 
Datastore.add(FullEntity<?> entity)
Datastore add operation: inserts the provided entity. 
 | 
Entity | 
Batch.add(FullEntity<?> entity)
Datastore add operation: inserts the provided entity. 
 | 
Entity | 
Transaction.add(FullEntity<?> entity)
Datastore add operation: inserts the provided entity. 
 | 
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. | 
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 EntityValue.Builder | 
EntityValue.newBuilder(FullEntity<?> entity)  | 
static <K extends IncompleteKey> | 
FullEntity.newBuilder(FullEntity<K> copyFrom)  | 
static Entity.Builder | 
Entity.newBuilder(Key key,
          FullEntity<?> 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. | 
static ListValue | 
ListValue.of(FullEntity<?> first,
  FullEntity<?>... other)
Creates a  
ListValue object given a number of FullEntity values. | 
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> | 
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> | 
Transaction.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. 
 | 
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 | 
Datastore.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. 
 | 
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)
Sets a property of type  
EntityValue. | 
B | 
BaseEntity.Builder.set(String name,
   FullEntity<?> first,
   FullEntity<?> second,
   FullEntity<?>... others)
Sets a list property containing elements of type  
EntityValue. | 
B | 
BaseEntity.Builder.set(String name,
   FullEntity<?> first,
   FullEntity<?> second,
   FullEntity<?>... others)
Sets a list property containing elements of type  
EntityValue. | 
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.  
 | 
| Constructor and Description | 
|---|
EntityValue(FullEntity<?> entity)  | 
Copyright © 2019 Google LLC. All rights reserved.