com.google.gcloud.datastore.Entity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gcloud-java-datastore Show documentation
Show all versions of gcloud-java-datastore Show documentation
Java idiomatic client for Google Cloud Datastore.
The newest version!
/*
* Copyright 2015 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.gcloud.datastore;
import static com.google.common.base.Preconditions.checkNotNull;
import com.google.common.base.Preconditions;
/**
* An entity is the Google Cloud Datastore persistent data object for a specific key.
* An entity will always have a complete {@link Key}.
*/
public final class Entity extends FullEntity {
private static final long serialVersionUID = 432961565733066915L;
public static final class Builder extends BaseEntity.Builder {
private Builder() {
}
private Builder(Key key) {
super(checkNotNull(key));
}
private Builder(Entity entity) {
super(entity);
}
private Builder(Key key, FullEntity> entity) {
properties(entity.properties());
key(key);
}
@Override
public Builder key(Key key) {
super.key(checkNotNull(key));
return this;
}
@Override
public Entity build() {
Preconditions.checkState(key() != null);
return new Entity(this);
}
}
Entity(Builder builder) {
super(builder);
}
Entity(FullEntity from) {
super(from);
Preconditions.checkArgument(from.key() != null);
}
@Override
protected BaseEntity.Builder emptyBuilder() {
return new Builder();
}
static Entity convert(FullEntity from) {
if (from instanceof Entity) {
return (Entity) from;
}
return new Entity(from);
}
public static Builder builder(Key key) {
return new Builder(key);
}
public static Builder builder(Entity copyFrom) {
return new Builder(copyFrom);
}
public static Builder builder(Key key, FullEntity> copyFrom) {
return new Builder(key, copyFrom);
}
static Entity fromPb(com.google.datastore.v1beta3.Entity entityPb) {
return new Builder().fill(entityPb).build();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy