Package com.google.cloud.datastore
Class FullEntity<K extends IncompleteKey>
- java.lang.Object
-
- com.google.cloud.datastore.BaseEntity<K>
-
- com.google.cloud.datastore.FullEntity<K>
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
Entity
public class FullEntity<K extends IncompleteKey> extends BaseEntity<K>
A full entity is aBaseEntity
that holds all the properties associated with a Datastore entity (as opposed toProjectionEntity
).- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FullEntity.Builder<K extends IncompleteKey>
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FullEntity<?>
fromPb(Entity entityPb)
static FullEntity.Builder<IncompleteKey>
newBuilder()
static <K extends IncompleteKey>
FullEntity.Builder<K>newBuilder(FullEntity<K> copyFrom)
static <K extends IncompleteKey>
FullEntity.Builder<K>newBuilder(K key)
-
-
-
Method Detail
-
newBuilder
public static FullEntity.Builder<IncompleteKey> newBuilder()
-
newBuilder
public static <K extends IncompleteKey> FullEntity.Builder<K> newBuilder(K key)
-
newBuilder
public static <K extends IncompleteKey> FullEntity.Builder<K> newBuilder(FullEntity<K> copyFrom)
-
fromPb
public static FullEntity<?> fromPb(Entity entityPb)
-
-