Class Value.Builder (2.19.2)

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
Type Description
Descriptor

Methods

addRepeatedField(Descriptors.FieldDescriptor field, Object value)

public Value.Builder addRepeatedField(Descriptors.FieldDescriptor field, Object value)
Parameters
Name Description
field FieldDescriptor
value Object
Returns
Type Description
Value.Builder
Overrides

build()

public Value build()
Returns
Type Description
Value

buildPartial()

public Value buildPartial()
Returns
Type Description
Value

clear()

public Value.Builder clear()
Returns
Type Description
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
Type Description
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
Type Description
Value.Builder

This builder for chaining.

clearBooleanValue()

public Value.Builder clearBooleanValue()

A boolean value.

bool boolean_value = 1;

Returns
Type Description
Value.Builder

This builder for chaining.

clearDoubleValue()

public Value.Builder clearDoubleValue()

A double value.

double double_value = 3;

Returns
Type Description
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
Type Description
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
Type Description
Value.Builder

This builder for chaining.

clearField(Descriptors.FieldDescriptor field)

public Value.Builder clearField(Descriptors.FieldDescriptor field)
Parameter
Name Description
field FieldDescriptor
Returns
Type Description
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
Type Description
Value.Builder

clearIntegerValue()

public Value.Builder clearIntegerValue()

An integer value.

int64 integer_value = 2;

Returns
Type Description
Value.Builder

This builder for chaining.

clearKeyValue()

public Value.Builder clearKeyValue()

A key value.

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

Returns
Type Description
Value.Builder

clearMeaning()

public Value.Builder clearMeaning()

The meaning field should only be populated for backwards compatibility.

int32 meaning = 14;

Returns
Type Description
Value.Builder

This builder for chaining.

clearNullValue()

public Value.Builder clearNullValue()

A null value.

.google.protobuf.NullValue null_value = 11;

Returns
Type Description
Value.Builder

This builder for chaining.

clearOneof(Descriptors.OneofDescriptor oneof)

public Value.Builder clearOneof(Descriptors.OneofDescriptor oneof)
Parameter
Name Description
oneof OneofDescriptor
Returns
Type Description
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
Type Description
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
Type Description
Value.Builder

clearValueType()

public Value.Builder clearValueType()
Returns
Type Description
Value.Builder

clone()

public Value.Builder clone()
Returns
Type Description
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
Type Description
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
Type Description
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
Type Description
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
Type Description
ByteString

The blobValue.

getBooleanValue()

public boolean getBooleanValue()

A boolean value.

bool boolean_value = 1;

Returns
Type Description
boolean

The booleanValue.

getDefaultInstanceForType()

public Value getDefaultInstanceForType()
Returns
Type Description
Value

getDescriptorForType()

public Descriptors.Descriptor getDescriptorForType()
Returns
Type Description
Descriptor
Overrides

getDoubleValue()

public double getDoubleValue()

A double value.

double double_value = 3;

Returns
Type Description
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
Type Description
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
Type Description
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
Type Description
EntityOrBuilder

getExcludeFromIndexes()

public boolean getExcludeFromIndexes()

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

bool exclude_from_indexes = 19;

Returns
Type Description
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
Type Description
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
Type Description
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
Type Description
com.google.type.LatLngOrBuilder

getIntegerValue()

public long getIntegerValue()

An integer value.

int64 integer_value = 2;

Returns
Type Description
long

The integerValue.

getKeyValue()

public Key getKeyValue()

A key value.

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

Returns
Type Description
Key

The keyValue.

getKeyValueBuilder()

public Key.Builder getKeyValueBuilder()

A key value.

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

Returns
Type Description
Key.Builder

getKeyValueOrBuilder()

public KeyOrBuilder getKeyValueOrBuilder()

A key value.

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

Returns
Type Description
KeyOrBuilder

getMeaning()

public int getMeaning()

The meaning field should only be populated for backwards compatibility.

int32 meaning = 14;

Returns
Type Description
int

The meaning.

getNullValue()

public NullValue getNullValue()

A null value.

.google.protobuf.NullValue null_value = 11;

Returns
Type Description
NullValue

The nullValue.

getNullValueValue()

public int getNullValueValue()

A null value.

.google.protobuf.NullValue null_value = 11;

Returns
Type Description
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
Type Description
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
Type Description
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
Type Description
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
Type Description
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
Type Description
TimestampOrBuilder

getValueTypeCase()

public Value.ValueTypeCase getValueTypeCase()
Returns
Type Description
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
Type Description
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
Type Description
boolean

Whether the blobValue field is set.

hasBooleanValue()

public boolean hasBooleanValue()

A boolean value.

bool boolean_value = 1;

Returns
Type Description
boolean

Whether the booleanValue field is set.

hasDoubleValue()

public boolean hasDoubleValue()

A double value.

double double_value = 3;

Returns
Type Description
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
Type Description
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
Type Description
boolean

Whether the geoPointValue field is set.

hasIntegerValue()

public boolean hasIntegerValue()

An integer value.

int64 integer_value = 2;

Returns
Type Description
boolean

Whether the integerValue field is set.

hasKeyValue()

public boolean hasKeyValue()

A key value.

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

Returns
Type Description
boolean

Whether the keyValue field is set.

hasNullValue()

public boolean hasNullValue()

A null value.

.google.protobuf.NullValue null_value = 11;

Returns
Type Description
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
Type Description
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
Type Description
boolean

Whether the timestampValue field is set.

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
Type Description
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
Name Description
value ArrayValue
Returns
Type Description
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
Name Description
value Entity
Returns
Type Description
Value.Builder

mergeFrom(Value other)

public Value.Builder mergeFrom(Value other)
Parameter
Name Description
other Value
Returns
Type Description
Value.Builder

mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public Value.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input CodedInputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
Value.Builder
Overrides
Exceptions
Type Description
IOException

mergeFrom(Message other)

public Value.Builder mergeFrom(Message other)
Parameter
Name Description
other Message
Returns
Type Description
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
Name Description
value com.google.type.LatLng
Returns
Type Description
Value.Builder

mergeKeyValue(Key value)

public Value.Builder mergeKeyValue(Key value)

A key value.

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

Parameter
Name Description
value Key
Returns
Type Description
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
Name Description
value Timestamp
Returns
Type Description
Value.Builder

mergeUnknownFields(UnknownFieldSet unknownFields)

public final Value.Builder mergeUnknownFields(UnknownFieldSet unknownFields)
Parameter
Name Description
unknownFields UnknownFieldSet
Returns
Type Description
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
Name Description
value ArrayValue
Returns
Type Description
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
Name Description
builderForValue ArrayValue.Builder
Returns
Type Description
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
Name Description
value ByteString

The blobValue to set.

Returns
Type Description
Value.Builder

This builder for chaining.

setBooleanValue(boolean value)

public Value.Builder setBooleanValue(boolean value)

A boolean value.

bool boolean_value = 1;

Parameter
Name Description
value boolean

The booleanValue to set.

Returns
Type Description
Value.Builder

This builder for chaining.

setDoubleValue(double value)

public Value.Builder setDoubleValue(double value)

A double value.

double double_value = 3;

Parameter
Name Description
value double

The doubleValue to set.

Returns
Type Description
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
Name Description
value Entity
Returns
Type Description
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
Name Description
builderForValue Entity.Builder
Returns
Type Description
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
Name Description
value boolean

The excludeFromIndexes to set.

Returns
Type Description
Value.Builder

This builder for chaining.

setField(Descriptors.FieldDescriptor field, Object value)

public Value.Builder setField(Descriptors.FieldDescriptor field, Object value)
Parameters
Name Description
field FieldDescriptor
value Object
Returns
Type Description
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
Name Description
value com.google.type.LatLng
Returns
Type Description
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
Name Description
builderForValue com.google.type.LatLng.Builder
Returns
Type Description
Value.Builder

setIntegerValue(long value)

public Value.Builder setIntegerValue(long value)

An integer value.

int64 integer_value = 2;

Parameter
Name Description
value long

The integerValue to set.

Returns
Type Description
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
Name Description
value Key
Returns
Type Description
Value.Builder

setKeyValue(Key.Builder builderForValue)

public Value.Builder setKeyValue(Key.Builder builderForValue)

A key value.

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

Parameter
Name Description
builderForValue Key.Builder
Returns
Type Description
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
Name Description
value int

The meaning to set.

Returns
Type Description
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
Name Description
value NullValue

The nullValue to set.

Returns
Type Description
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
Name Description
value int

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

Returns
Type Description
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
Name Description
field FieldDescriptor
index int
value Object
Returns
Type Description
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
Name Description
value String

The stringValue to set.

Returns
Type Description
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
Name Description
value ByteString

The bytes for stringValue to set.

Returns
Type Description
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
Name Description
value Timestamp
Returns
Type Description
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
Name Description
builderForValue Builder
Returns
Type Description
Value.Builder

setUnknownFields(UnknownFieldSet unknownFields)

public final Value.Builder setUnknownFields(UnknownFieldSet unknownFields)
Parameter
Name Description
unknownFields UnknownFieldSet
Returns
Type Description
Value.Builder
Overrides