Uses of Class
com.google.cloud.datastore.IncompleteKey
-
Packages that use IncompleteKey Package Description com.google.cloud.datastore A client for Cloud Datastore – A highly-scalable NoSQL database for web and mobile applications. -
-
Uses of IncompleteKey in com.google.cloud.datastore
Classes in com.google.cloud.datastore with type parameters of type IncompleteKey Modifier and Type Class Description class
BaseEntity<K extends IncompleteKey>
A base class for entities (key and properties).static class
BaseEntity.Builder<K extends IncompleteKey,B extends BaseEntity.Builder<K,B>>
class
FullEntity<K extends IncompleteKey>
A full entity is aBaseEntity
that holds all the properties associated with a Datastore entity (as opposed toProjectionEntity
).static class
FullEntity.Builder<K extends IncompleteKey>
Subclasses of IncompleteKey in com.google.cloud.datastore Modifier and Type Class Description class
Key
A key that is guaranteed to be complete and could be used to reference a Google Cloud DatastoreEntity
.Methods in com.google.cloud.datastore with type parameters of type IncompleteKey Modifier and Type Method Description <K extends IncompleteKey>
FullEntity<K>BaseEntity. getEntity(String name)
Returns the property value as an entity.static <K extends IncompleteKey>
FullEntity.Builder<K>FullEntity. newBuilder(FullEntity<K> copyFrom)
static <K extends IncompleteKey>
FullEntity.Builder<K>FullEntity. newBuilder(K key)
Methods in com.google.cloud.datastore that return IncompleteKey Modifier and Type Method Description IncompleteKey
IncompleteKey.Builder. build()
protected IncompleteKey
KeyFactory. build()
IncompleteKey
KeyFactory. newKey()
Methods in com.google.cloud.datastore that return types with arguments of type IncompleteKey Modifier and Type Method Description static FullEntity.Builder<IncompleteKey>
FullEntity. newBuilder()
protected List<FullEntity<IncompleteKey>>
BaseDatastoreBatchWriter. toAddAutoId()
Methods in com.google.cloud.datastore with parameters of type IncompleteKey Modifier and Type Method Description Key
Datastore. allocateId(IncompleteKey key)
Allocate a unique id for the given key.List<Key>
Datastore. allocateId(IncompleteKey... keys)
Returns a list of keys using the allocated ids ordered by the input.static IncompleteKey.Builder
IncompleteKey. newBuilder(IncompleteKey copyFrom)
static Key.Builder
Key. newBuilder(IncompleteKey copyFrom, long id)
static Key.Builder
Key. newBuilder(IncompleteKey copyFrom, String name)
Method parameters in com.google.cloud.datastore with type arguments of type IncompleteKey Modifier and Type Method Description static int
Entity. calculateSerializedSize(BaseEntity<? extends IncompleteKey> entity)
Returns the size in bytes of the protobuf form of the provided entity.
-