| Package | Description |
|---|---|
| com.google.cloud.datastore |
A client to the Google Cloud Datastore.
|
| 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.
|
List<Entity> |
BaseDatastoreBatchWriter.add(FullEntity<?>... entities) |
Entity |
DatastoreWriter.add(FullEntity<?> entity)
Datastore add operation.
|
Entity |
BaseDatastoreBatchWriter.add(FullEntity<?> entity) |
GqlQuery.Builder<V> |
GqlQuery.Builder.addBinding(FullEntity<?>... value) |
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) |
static EntityValue.Builder |
EntityValue.builder(FullEntity<?> entity) |
static <K extends IncompleteKey> |
FullEntity.builder(FullEntity<K> copyFrom) |
static Entity.Builder |
Entity.builder(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.
|
List<Entity> |
Datastore.put(FullEntity<?>... entities)
A Datastore put (a.k.a upsert) operation.
|
List<Entity> |
BaseDatastoreBatchWriter.put(FullEntity<?>... entities) |
Entity |
DatastoreWriter.put(FullEntity<?> entity)
A Datastore put (a.k.a upsert) operation.
|
Entity |
Datastore.put(FullEntity<?> entity)
A Datastore put (a.k.a upsert) operation.
|
Entity |
BaseDatastoreBatchWriter.put(FullEntity<?> entity) |
void |
BaseDatastoreBatchWriter.putWithDeferredIdAllocation(FullEntity<?>... entities) |
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) |
| Constructor and Description |
|---|
EntityValue(FullEntity<?> entity) |
Copyright © 2016 Google. All rights reserved.