Uses of Class
com.google.appengine.api.datastore.Entity
-
Packages that use Entity Package Description com.google.appengine.api.blobstore Provides management and persistent storage of large, immutable byte arrays.com.google.appengine.api.datastore -
-
Uses of Entity in com.google.appengine.api.blobstore
Methods in com.google.appengine.api.blobstore with parameters of type Entity Modifier and Type Method Description BlobInfoBlobInfoFactory. createBlobInfo(Entity entity) -
Uses of Entity in com.google.appengine.api.datastore
Methods in com.google.appengine.api.datastore that return Entity Modifier and Type Method Description EntityPreparedQuery. asSingleEntity()Retrieves the one and only result for theQuery.EntityAdminDatastoreService.EntityBuilder. build()EntityEntity. clone()Returns a shallow copy of thisEntityinstance.static EntityEntityTranslator. createFromPb(com.google.storage.onestore.v3.OnestoreEntity.EntityProto proto)static EntityEntityTranslator. createFromPb(com.google.storage.onestore.v3.OnestoreEntity.EntityProto proto, Collection<Projection> projections)static EntityEntityTranslator. createFromPbBytes(byte[] pbBytes)EntityDatastoreService. get(Key key)Retrieves theEntitywith the specifiedKey.EntityDatastoreService. get(Transaction txn, Key key)Exhibits the same behavior asDatastoreService.get(Key), but executes within the provided transaction.static EntityDataTypeTranslator. toEntityFromSerializedV1Proto(byte[] serializedV1Entity)Deserializes a Cloud Datastore V1Entityprotobuf and converts it to an App Engine DatastoreEntity.Methods in com.google.appengine.api.datastore with parameters of type Entity Modifier and Type Method Description static com.google.storage.onestore.v3.OnestoreEntity.EntityProtoEntityTranslator. convertToPb(Entity entity)static longEntities. getVersionProperty(Entity entity)Get the value of the __version__ property fromentity.Future<Key>AdminDatastoreService. put(@Nullable Transaction txn, Entity entity)Future<Key>AdminDatastoreService. put(Entity entity)Future<Key>AsyncDatastoreService. put(@Nullable Transaction txn, Entity entity)Future<Key>AsyncDatastoreService. put(Entity entity)KeyDatastoreService. put(Entity entity)If the specifiedEntitydoes not yet exist in the data store, create it and assign itsKey.KeyDatastoreService. put(Transaction txn, Entity entity)Exhibits the same behavior asDatastoreService.put(Entity), but executes within the provided transaction.voidEntity. setPropertiesFrom(Entity src)voidPreGetContext. setResultForCurrentElement(Entity entity)Set theEntitythat will be associated with theKeyreturned byCallbackContext.getCurrentElement()in the result of the get() operation.static byte[]DataTypeTranslator. toSerializedV1Proto(Entity entity)Converts an App Engine DatastoreEntityto a Cloud DatastoreEntityV1 protobuf and serializes it.Method parameters in com.google.appengine.api.datastore with type arguments of type Entity Modifier and Type Method Description Future<List<Key>>AdminDatastoreService. put(@Nullable Transaction txn, Iterable<Entity> entities)Future<List<Key>>AdminDatastoreService. put(Iterable<Entity> entities)Future<List<Key>>AsyncDatastoreService. put(@Nullable Transaction txn, Iterable<Entity> entities)Future<List<Key>>AsyncDatastoreService. put(Iterable<Entity> entities)List<Key>DatastoreService. put(Transaction txn, Iterable<Entity> entities)Exhibits the same behavior asDatastoreService.put(Iterable), but executes within the provided transaction.List<Key>DatastoreService. put(Iterable<Entity> entities)Performs a batchputof allentities.
-