Class Value.Builder (2.19.0)

public static final class Value.Builder extends GeneratedMessageV3.Builder<Value.Builder> implements ValueOrBuilder

A message that can hold any of the supported value types and associated metadata.

Protobuf type google.datastore.v1.Value

Implements

ValueOrBuilder

Static Methods

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
TypeDescription
Descriptor

Methods

addRepeatedField(Descriptors.FieldDescriptor field, Object value)

public Value.Builder addRepeatedField(Descriptors.FieldDescriptor field, Object value)
Parameters
NameDescription
fieldFieldDescriptor
valueObject
Returns
TypeDescription
Value.Builder
Overrides

build()

public Value build()
Returns
TypeDescription
Value

buildPartial()

public Value buildPartial()
Returns
TypeDescription
Value

clear()

public Value.Builder clear()
Returns
TypeDescription
Value.Builder
Overrides

clearArrayValue()

public Value.Builder clearArrayValue()

An array value. Cannot contain another array value. A Value instance that sets field array_value must not set fields meaning or exclude_from_indexes.

.google.datastore.v1.ArrayValue array_value = 9;

Returns
TypeDescription
Value.Builder

clearBlobValue()

public Value.Builder clearBlobValue()

A blob value. May have at most 1,000,000 bytes. When exclude_from_indexes is false, may have at most 1500 bytes. In JSON requests, must be base64-encoded.

bytes blob_value = 18;

Returns
TypeDescription
Value.Builder

This builder for chaining.

clearBooleanValue()

public Value.Builder clearBooleanValue()

A boolean value.

bool boolean_value = 1;

Returns
TypeDescription
Value.Builder

This builder for chaining.

clearDoubleValue()

public Value.Builder clearDoubleValue()

A double value.

double double_value = 3;

Returns
TypeDescription
Value.Builder

This builder for chaining.

clearEntityValue()

public Value.Builder clearEntityValue()

An entity value.

  • May have no key.
  • May have a key with an incomplete key path.
  • May have a reserved/read-only key.

.google.datastore.v1.Entity entity_value = 6;

Returns
TypeDescription
Value.Builder

clearExcludeFromIndexes()

public Value.Builder clearExcludeFromIndexes()

If the value should be excluded from all indexes including those defined explicitly.

bool exclude_from_indexes = 19;

Returns
TypeDescription
Value.Builder

This builder for chaining.

clearField(Descriptors.FieldDescriptor field)

public Value.Builder clearField(Descriptors.FieldDescriptor field)
Parameter
NameDescription
fieldFieldDescriptor
Returns
TypeDescription
Value.Builder
Overrides

clearGeoPointValue()

public Value.Builder clearGeoPointValue()

A geo point value representing a point on the surface of Earth.

.google.type.LatLng geo_point_value = 8;

Returns
TypeDescription
Value.Builder

clearIntegerValue()

public Value.Builder clearIntegerValue()

An integer value.

int64 integer_value = 2;

Returns
TypeDescription
Value.Builder

This builder for chaining.

clearKeyValue()

public Value.Builder clearKeyValue()

A key value.

.google.datastore.v1.Key key_value = 5;

Returns
TypeDescription
Value.Builder

clearMeaning()

public Value.Builder clearMeaning()

The meaning field should only be populated for backwards compatibility.

int32 meaning = 14;

Returns
TypeDescription
Value.Builder

This builder for chaining.

clearNullValue()

public Value.Builder clearNullValue()

A null value.

.google.protobuf.NullValue null_value = 11;

Returns
TypeDescription
Value.Builder

This builder for chaining.

clearOneof(Descriptors.OneofDescriptor oneof)

public Value.Builder clearOneof(Descriptors.OneofDescriptor oneof)
Parameter
NameDescription
oneofOneofDescriptor
Returns
TypeDescription
Value.Builder
Overrides

clearStringValue()

public Value.Builder clearStringValue()

A UTF-8 encoded string value. When exclude_from_indexes is false (it is indexed) , may have at most 1500 bytes. Otherwise, may be set to at most 1,000,000 bytes.

string string_value = 17;

Returns
TypeDescription
Value.Builder

This builder for chaining.

clearTimestampValue()

public Value.Builder clearTimestampValue()

A timestamp value. When stored in the Datastore, precise only to microseconds; any additional precision is rounded down.

.google.protobuf.Timestamp timestamp_value = 10;

Returns
TypeDescription
Value.Builder

clearValueType()

public Value.Builder clearValueType()
Returns
TypeDescription
Value.Builder

clone()

public Value.Builder clone()
Returns
TypeDescription
Value.Builder
Overrides

getArrayValue()

public ArrayValue getArrayValue()

An array value. Cannot contain another array value. A Value instance that sets field array_value must not set fields meaning or exclude_from_indexes.

.google.datastore.v1.ArrayValue array_value = 9;

Returns
TypeDescription
ArrayValue

The arrayValue.

getArrayValueBuilder()

public ArrayValue.Builder getArrayValueBuilder()

An array value. Cannot contain another array value. A Value instance that sets field array_value must not set fields meaning or exclude_from_indexes.

.google.datastore.v1.ArrayValue array_value = 9;

Returns
TypeDescription
ArrayValue.Builder

getArrayValueOrBuilder()

public ArrayValueOrBuilder getArrayValueOrBuilder()

An array value. Cannot contain another array value. A Value instance that sets field array_value must not set fields meaning or exclude_from_indexes.

.google.datastore.v1.ArrayValue array_value = 9;

Returns
TypeDescription
ArrayValueOrBuilder

getBlobValue()

public ByteString getBlobValue()

A blob value. May have at most 1,000,000 bytes. When exclude_from_indexes is false, may have at most 1500 bytes. In JSON requests, must be base64-encoded.

bytes blob_value = 18;

Returns
TypeDescription
ByteString

The blobValue.

getBooleanValue()

public boolean getBooleanValue()

A boolean value.

bool boolean_value = 1;

Returns
TypeDescription
boolean

The booleanValue.

getDefaultInstanceForType()

public Value getDefaultInstanceForType()
Returns
TypeDescription
Value

getDescriptorForType()

public Descriptors.Descriptor getDescriptorForType()
Returns
TypeDescription
Descriptor
Overrides

getDoubleValue()

public double getDoubleValue()

A double value.

double double_value = 3;

Returns
TypeDescription
double

The doubleValue.

getEntityValue()

public Entity getEntityValue()

An entity value.

  • May have no key.
  • May have a key with an incomplete key path.
  • May have a reserved/read-only key.

.google.datastore.v1.Entity entity_value = 6;

Returns
TypeDescription
Entity

The entityValue.

getEntityValueBuilder()

public Entity.Builder getEntityValueBuilder()

An entity value.

  • May have no key.
  • May have a key with an incomplete key path.
  • May have a reserved/read-only key.

.google.datastore.v1.Entity entity_value = 6;

Returns
TypeDescription
Entity.Builder

getEntityValueOrBuilder()

public EntityOrBuilder getEntityValueOrBuilder()

An entity value.

  • May have no key.
  • May have a key with an incomplete key path.
  • May have a reserved/read-only key.

.google.datastore.v1.Entity entity_value = 6;

Returns
TypeDescription
EntityOrBuilder

getExcludeFromIndexes()

public boolean getExcludeFromIndexes()

If the value should be excluded from all indexes including those defined explicitly.

bool exclude_from_indexes = 19;

Returns
TypeDescription
boolean

The excludeFromIndexes.

getGeoPointValue()

public LatLng getGeoPointValue()

A geo point value representing a point on the surface of Earth.

.google.type.LatLng geo_point_value = 8;

Returns
TypeDescription
com.google.type.LatLng

The geoPointValue.

getGeoPointValueBuilder()

public LatLng.Builder getGeoPointValueBuilder()

A geo point value representing a point on the surface of Earth.

.google.type.LatLng geo_point_value = 8;

Returns
TypeDescription
com.google.type.LatLng.Builder

getGeoPointValueOrBuilder()

public LatLngOrBuilder getGeoPointValueOrBuilder()

A geo point value representing a point on the surface of Earth.

.google.type.LatLng geo_point_value = 8;

Returns
TypeDescription
com.google.type.LatLngOrBuilder

getIntegerValue()

public long getIntegerValue()

An integer value.

int64 integer_value = 2;

Returns
TypeDescription
long

The integerValue.

getKeyValue()

public Key getKeyValue()

A key value.

.google.datastore.v1.Key key_value = 5;

Returns
TypeDescription
Key

The keyValue.

getKeyValueBuilder()

public Key.Builder getKeyValueBuilder()

A key value.

.google.datastore.v1.Key key_value = 5;

Returns
TypeDescription
Key.Builder

getKeyValueOrBuilder()

public KeyOrBuilder getKeyValueOrBuilder()

A key value.

.google.datastore.v1.Key key_value = 5;

Returns
TypeDescription
KeyOrBuilder

getMeaning()

public int getMeaning()

The meaning field should only be populated for backwards compatibility.

int32 meaning = 14;

Returns
TypeDescription
int

The meaning.

getNullValue()

public NullValue getNullValue()

A null value.

.google.protobuf.NullValue null_value = 11;

Returns
TypeDescription
NullValue

The nullValue.

getNullValueValue()

public int getNullValueValue()

A null value.

.google.protobuf.NullValue null_value = 11;

Returns
TypeDescription
int

The enum numeric value on the wire for nullValue.

getStringValue()

public String getStringValue()

A UTF-8 encoded string value. When exclude_from_indexes is false (it is indexed) , may have at most 1500 bytes. Otherwise, may be set to at most 1,000,000 bytes.

string string_value = 17;

Returns
TypeDescription
String

The stringValue.

getStringValueBytes()

public ByteString getStringValueBytes()

A UTF-8 encoded string value. When exclude_from_indexes is false (it is indexed) , may have at most 1500 bytes. Otherwise, may be set to at most 1,000,000 bytes.

string string_value = 17;

Returns
TypeDescription
ByteString

The bytes for stringValue.

getTimestampValue()

public Timestamp getTimestampValue()

A timestamp value. When stored in the Datastore, precise only to microseconds; any additional precision is rounded down.

.google.protobuf.Timestamp timestamp_value = 10;

Returns
TypeDescription
Timestamp

The timestampValue.

getTimestampValueBuilder()

public Timestamp.Builder getTimestampValueBuilder()

A timestamp value. When stored in the Datastore, precise only to microseconds; any additional precision is rounded down.

.google.protobuf.Timestamp timestamp_value = 10;

Returns
TypeDescription
Builder

getTimestampValueOrBuilder()

public TimestampOrBuilder getTimestampValueOrBuilder()

A timestamp value. When stored in the Datastore, precise only to microseconds; any additional precision is rounded down.

.google.protobuf.Timestamp timestamp_value = 10;

Returns
TypeDescription
TimestampOrBuilder

getValueTypeCase()

public Value.ValueTypeCase getValueTypeCase()
Returns
TypeDescription
Value.ValueTypeCase

hasArrayValue()

public boolean hasArrayValue()

An array value. Cannot contain another array value. A Value instance that sets field array_value must not set fields meaning or exclude_from_indexes.

.google.datastore.v1.ArrayValue array_value = 9;

Returns
TypeDescription
boolean

Whether the arrayValue field is set.

hasBlobValue()

public boolean hasBlobValue()

A blob value. May have at most 1,000,000 bytes. When exclude_from_indexes is false, may have at most 1500 bytes. In JSON requests, must be base64-encoded.

bytes blob_value = 18;

Returns
TypeDescription
boolean

Whether the blobValue field is set.

hasBooleanValue()

public boolean hasBooleanValue()

A boolean value.

bool boolean_value = 1;

Returns
TypeDescription
boolean

Whether the booleanValue field is set.

hasDoubleValue()

public boolean hasDoubleValue()

A double value.

double double_value = 3;

Returns
TypeDescription
boolean

Whether the doubleValue field is set.

hasEntityValue()

public boolean hasEntityValue()

An entity value.

  • May have no key.
  • May have a key with an incomplete key path.
  • May have a reserved/read-only key.

.google.datastore.v1.Entity entity_value = 6;

Returns
TypeDescription
boolean

Whether the entityValue field is set.

hasGeoPointValue()

public boolean hasGeoPointValue()

A geo point value representing a point on the surface of Earth.

.google.type.LatLng geo_point_value = 8;

Returns
TypeDescription
boolean

Whether the geoPointValue field is set.

hasIntegerValue()

public boolean hasIntegerValue()

An integer value.

int64 integer_value = 2;

Returns
TypeDescription
boolean

Whether the integerValue field is set.

hasKeyValue()

public boolean hasKeyValue()

A key value.

.google.datastore.v1.Key key_value = 5;

Returns
TypeDescription
boolean

Whether the keyValue field is set.

hasNullValue()

public boolean hasNullValue()

A null value.

.google.protobuf.NullValue null_value = 11;

Returns
TypeDescription
boolean

Whether the nullValue field is set.

hasStringValue()

public boolean hasStringValue()

A UTF-8 encoded string value. When exclude_from_indexes is false (it is indexed) , may have at most 1500 bytes. Otherwise, may be set to at most 1,000,000 bytes.

string string_value = 17;

Returns
TypeDescription
boolean

Whether the stringValue field is set.

hasTimestampValue()

public boolean hasTimestampValue()

A timestamp value. When stored in the Datastore, precise only to microseconds; any additional precision is rounded down.

.google.protobuf.Timestamp timestamp_value = 10;

Returns
TypeDescription
boolean

Whether the timestampValue field is set.

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
TypeDescription
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
TypeDescription
boolean
Overrides

mergeArrayValue(ArrayValue value)

public Value.Builder mergeArrayValue(ArrayValue value)

An array value. Cannot contain another array value. A Value instance that sets field array_value must not set fields meaning or exclude_from_indexes.

.google.datastore.v1.ArrayValue array_value = 9;

Parameter
NameDescription
valueArrayValue
Returns
TypeDescription
Value.Builder

mergeEntityValue(Entity value)

public Value.Builder mergeEntityValue(Entity value)

An entity value.

  • May have no key.
  • May have a key with an incomplete key path.
  • May have a reserved/read-only key.

.google.datastore.v1.Entity entity_value = 6;

Parameter
NameDescription
valueEntity
Returns
TypeDescription
Value.Builder

mergeFrom(Value other)

public Value.Builder mergeFrom(Value other)
Parameter
NameDescription
otherValue
Returns
TypeDescription
Value.Builder

mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public Value.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputCodedInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
Value.Builder
Overrides
Exceptions
TypeDescription
IOException

mergeFrom(Message other)

public Value.Builder mergeFrom(Message other)
Parameter
NameDescription
otherMessage
Returns
TypeDescription
Value.Builder
Overrides

mergeGeoPointValue(LatLng value)

public Value.Builder mergeGeoPointValue(LatLng value)

A geo point value representing a point on the surface of Earth.

.google.type.LatLng geo_point_value = 8;

Parameter
NameDescription
valuecom.google.type.LatLng
Returns
TypeDescription
Value.Builder

mergeKeyValue(Key value)

public Value.Builder mergeKeyValue(Key value)

A key value.

.google.datastore.v1.Key key_value = 5;

Parameter
NameDescription
valueKey
Returns
TypeDescription
Value.Builder

mergeTimestampValue(Timestamp value)

public Value.Builder mergeTimestampValue(Timestamp value)

A timestamp value. When stored in the Datastore, precise only to microseconds; any additional precision is rounded down.

.google.protobuf.Timestamp timestamp_value = 10;

Parameter
NameDescription
valueTimestamp
Returns
TypeDescription
Value.Builder

mergeUnknownFields(UnknownFieldSet unknownFields)

public final Value.Builder mergeUnknownFields(UnknownFieldSet unknownFields)
Parameter
NameDescription
unknownFieldsUnknownFieldSet
Returns
TypeDescription
Value.Builder
Overrides

setArrayValue(ArrayValue value)

public Value.Builder setArrayValue(ArrayValue value)

An array value. Cannot contain another array value. A Value instance that sets field array_value must not set fields meaning or exclude_from_indexes.

.google.datastore.v1.ArrayValue array_value = 9;

Parameter
NameDescription
valueArrayValue
Returns
TypeDescription
Value.Builder

setArrayValue(ArrayValue.Builder builderForValue)

public Value.Builder setArrayValue(ArrayValue.Builder builderForValue)

An array value. Cannot contain another array value. A Value instance that sets field array_value must not set fields meaning or exclude_from_indexes.

.google.datastore.v1.ArrayValue array_value = 9;

Parameter
NameDescription
builderForValueArrayValue.Builder
Returns
TypeDescription
Value.Builder

setBlobValue(ByteString value)

public Value.Builder setBlobValue(ByteString value)

A blob value. May have at most 1,000,000 bytes. When exclude_from_indexes is false, may have at most 1500 bytes. In JSON requests, must be base64-encoded.

bytes blob_value = 18;

Parameter
NameDescription
valueByteString

The blobValue to set.

Returns
TypeDescription
Value.Builder

This builder for chaining.

setBooleanValue(boolean value)

public Value.Builder setBooleanValue(boolean value)

A boolean value.

bool boolean_value = 1;

Parameter
NameDescription
valueboolean

The booleanValue to set.

Returns
TypeDescription
Value.Builder

This builder for chaining.

setDoubleValue(double value)

public Value.Builder setDoubleValue(double value)

A double value.

double double_value = 3;

Parameter
NameDescription
valuedouble

The doubleValue to set.

Returns
TypeDescription
Value.Builder

This builder for chaining.

setEntityValue(Entity value)

public Value.Builder setEntityValue(Entity value)

An entity value.

  • May have no key.
  • May have a key with an incomplete key path.
  • May have a reserved/read-only key.

.google.datastore.v1.Entity entity_value = 6;

Parameter
NameDescription
valueEntity
Returns
TypeDescription
Value.Builder

setEntityValue(Entity.Builder builderForValue)

public Value.Builder setEntityValue(Entity.Builder builderForValue)

An entity value.

  • May have no key.
  • May have a key with an incomplete key path.
  • May have a reserved/read-only key.

.google.datastore.v1.Entity entity_value = 6;

Parameter
NameDescription
builderForValueEntity.Builder
Returns
TypeDescription
Value.Builder

setExcludeFromIndexes(boolean value)

public Value.Builder setExcludeFromIndexes(boolean value)

If the value should be excluded from all indexes including those defined explicitly.

bool exclude_from_indexes = 19;

Parameter
NameDescription
valueboolean

The excludeFromIndexes to set.

Returns
TypeDescription
Value.Builder

This builder for chaining.

setField(Descriptors.FieldDescriptor field, Object value)

public Value.Builder setField(Descriptors.FieldDescriptor field, Object value)
Parameters
NameDescription
fieldFieldDescriptor
valueObject
Returns
TypeDescription
Value.Builder
Overrides

setGeoPointValue(LatLng value)

public Value.Builder setGeoPointValue(LatLng value)

A geo point value representing a point on the surface of Earth.

.google.type.LatLng geo_point_value = 8;

Parameter
NameDescription
valuecom.google.type.LatLng
Returns
TypeDescription
Value.Builder

setGeoPointValue(LatLng.Builder builderForValue)

public Value.Builder setGeoPointValue(LatLng.Builder builderForValue)

A geo point value representing a point on the surface of Earth.

.google.type.LatLng geo_point_value = 8;

Parameter
NameDescription
builderForValuecom.google.type.LatLng.Builder
Returns
TypeDescription
Value.Builder

setIntegerValue(long value)

public Value.Builder setIntegerValue(long value)

An integer value.

int64 integer_value = 2;

Parameter
NameDescription
valuelong

The integerValue to set.

Returns
TypeDescription
Value.Builder

This builder for chaining.

setKeyValue(Key value)

public Value.Builder setKeyValue(Key value)

A key value.

.google.datastore.v1.Key key_value = 5;

Parameter
NameDescription
valueKey
Returns
TypeDescription
Value.Builder

setKeyValue(Key.Builder builderForValue)

public Value.Builder setKeyValue(Key.Builder builderForValue)

A key value.

.google.datastore.v1.Key key_value = 5;

Parameter
NameDescription
builderForValueKey.Builder
Returns
TypeDescription
Value.Builder

setMeaning(int value)

public Value.Builder setMeaning(int value)

The meaning field should only be populated for backwards compatibility.

int32 meaning = 14;

Parameter
NameDescription
valueint

The meaning to set.

Returns
TypeDescription
Value.Builder

This builder for chaining.

setNullValue(NullValue value)

public Value.Builder setNullValue(NullValue value)

A null value.

.google.protobuf.NullValue null_value = 11;

Parameter
NameDescription
valueNullValue

The nullValue to set.

Returns
TypeDescription
Value.Builder

This builder for chaining.

setNullValueValue(int value)

public Value.Builder setNullValueValue(int value)

A null value.

.google.protobuf.NullValue null_value = 11;

Parameter
NameDescription
valueint

The enum numeric value on the wire for nullValue to set.

Returns
TypeDescription
Value.Builder

This builder for chaining.

setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)

public Value.Builder setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
Parameters
NameDescription
fieldFieldDescriptor
indexint
valueObject
Returns
TypeDescription
Value.Builder
Overrides

setStringValue(String value)

public Value.Builder setStringValue(String value)

A UTF-8 encoded string value. When exclude_from_indexes is false (it is indexed) , may have at most 1500 bytes. Otherwise, may be set to at most 1,000,000 bytes.

string string_value = 17;

Parameter
NameDescription
valueString

The stringValue to set.

Returns
TypeDescription
Value.Builder

This builder for chaining.

setStringValueBytes(ByteString value)

public Value.Builder setStringValueBytes(ByteString value)

A UTF-8 encoded string value. When exclude_from_indexes is false (it is indexed) , may have at most 1500 bytes. Otherwise, may be set to at most 1,000,000 bytes.

string string_value = 17;

Parameter
NameDescription
valueByteString

The bytes for stringValue to set.

Returns
TypeDescription
Value.Builder

This builder for chaining.

setTimestampValue(Timestamp value)

public Value.Builder setTimestampValue(Timestamp value)

A timestamp value. When stored in the Datastore, precise only to microseconds; any additional precision is rounded down.

.google.protobuf.Timestamp timestamp_value = 10;

Parameter
NameDescription
valueTimestamp
Returns
TypeDescription
Value.Builder

setTimestampValue(Timestamp.Builder builderForValue)

public Value.Builder setTimestampValue(Timestamp.Builder builderForValue)

A timestamp value. When stored in the Datastore, precise only to microseconds; any additional precision is rounded down.

.google.protobuf.Timestamp timestamp_value = 10;

Parameter
NameDescription
builderForValueBuilder
Returns
TypeDescription
Value.Builder

setUnknownFields(UnknownFieldSet unknownFields)

public final Value.Builder setUnknownFields(UnknownFieldSet unknownFields)
Parameter
NameDescription
unknownFieldsUnknownFieldSet
Returns
TypeDescription
Value.Builder
Overrides