com.google.cloud.datastore.LongValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-cloud-datastore Show documentation
Show all versions of google-cloud-datastore Show documentation
Java idiomatic client for Google Cloud Datastore.
/*
* Copyright 2015 Google LLC
*
* 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.cloud.datastore;
import static com.google.datastore.v1.Value.INTEGER_VALUE_FIELD_NUMBER;
public final class LongValue extends Value {
private static final long serialVersionUID = -3433015349912039278L;
static final BaseMarshaller MARSHALLER =
new BaseMarshaller() {
private static final long serialVersionUID = -8359920606872800391L;
@Override
public int getProtoFieldId() {
return INTEGER_VALUE_FIELD_NUMBER;
}
@Override
public Builder newBuilder(Long value) {
return LongValue.newBuilder(value);
}
@Override
protected Long getValue(com.google.datastore.v1.Value from) {
return from.getIntegerValue();
}
@Override
protected void setValue(LongValue from, com.google.datastore.v1.Value.Builder to) {
to.setIntegerValue(from.get());
}
};
public static final class Builder extends Value.BaseBuilder {
private Builder() {
super(ValueType.LONG);
}
@Override
public LongValue build() {
return new LongValue(this);
}
}
public LongValue(long value) {
this(newBuilder(value));
}
private LongValue(Builder builder) {
super(builder);
}
@Override
public Builder toBuilder() {
return new Builder().mergeFrom(this);
}
public static LongValue of(long value) {
return new LongValue(value);
}
public static Builder newBuilder(long value) {
return new Builder().set(value);
}
}