Class Value.Builder

java.lang.Object
com.google.protobuf.AbstractMessageLite.Builder
com.google.protobuf.AbstractMessage.Builder<BuilderT>
com.google.protobuf.GeneratedMessageV3.Builder<Value.Builder>
com.google.bigtable.v2.Value.Builder
All Implemented Interfaces:
ValueOrBuilder, com.google.protobuf.Message.Builder, com.google.protobuf.MessageLite.Builder, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Cloneable
Enclosing class:
Value

public static final class Value.Builder extends com.google.protobuf.GeneratedMessageV3.Builder<Value.Builder> implements ValueOrBuilder
 `Value` represents a dynamically typed value.
 The typed fields in `Value` are used as a transport encoding for the actual
 value (which may be of a more complex type). See the documentation of the
 `Type` message for more details.
 
Protobuf type google.bigtable.v2.Value
  • Method Details

    • getDescriptor

      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • internalGetFieldAccessorTable

      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<Value.Builder>
    • clear

      public Value.Builder clear()
      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      Overrides:
      clear in class com.google.protobuf.GeneratedMessageV3.Builder<Value.Builder>
    • getDescriptorForType

      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<Value.Builder>
    • getDefaultInstanceForType

      public Value getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
    • build

      public Value build()
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
    • buildPartial

      public Value buildPartial()
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
    • clone

      public Value.Builder clone()
      Specified by:
      clone in interface com.google.protobuf.Message.Builder
      Specified by:
      clone in interface com.google.protobuf.MessageLite.Builder
      Overrides:
      clone in class com.google.protobuf.GeneratedMessageV3.Builder<Value.Builder>
    • setField

      public Value.Builder setField(com.google.protobuf.Descriptors.FieldDescriptor field, Object value)
      Specified by:
      setField in interface com.google.protobuf.Message.Builder
      Overrides:
      setField in class com.google.protobuf.GeneratedMessageV3.Builder<Value.Builder>
    • clearField

      public Value.Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field)
      Specified by:
      clearField in interface com.google.protobuf.Message.Builder
      Overrides:
      clearField in class com.google.protobuf.GeneratedMessageV3.Builder<Value.Builder>
    • clearOneof

      public Value.Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof)
      Specified by:
      clearOneof in interface com.google.protobuf.Message.Builder
      Overrides:
      clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<Value.Builder>
    • setRepeatedField

      public Value.Builder setRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, int index, Object value)
      Specified by:
      setRepeatedField in interface com.google.protobuf.Message.Builder
      Overrides:
      setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<Value.Builder>
    • addRepeatedField

      public Value.Builder addRepeatedField(com.google.protobuf.Descriptors.FieldDescriptor field, Object value)
      Specified by:
      addRepeatedField in interface com.google.protobuf.Message.Builder
      Overrides:
      addRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<Value.Builder>
    • mergeFrom

      public Value.Builder mergeFrom(com.google.protobuf.Message other)
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<Value.Builder>
    • mergeFrom

      public Value.Builder mergeFrom(Value other)
    • isInitialized

      public final boolean isInitialized()
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<Value.Builder>
    • mergeFrom

      public Value.Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<Value.Builder>
      Throws:
      IOException
    • getKindCase

      public Value.KindCase getKindCase()
      Specified by:
      getKindCase in interface ValueOrBuilder
    • clearKind

      public Value.Builder clearKind()
    • hasType

      public boolean hasType()
       The verified `Type` of this `Value`, if it cannot be inferred.
      
       Read results will never specify the encoding for `type` since the value
       will already have been decoded by the server. Furthermore, the `type` will
       be omitted entirely if it can be inferred from a previous response. The
       exact semantics for inferring `type` will vary, and are therefore
       documented separately for each read method.
      
       When using composite types (Struct, Array, Map) only the outermost `Value`
       will specify the `type`. This top-level `type` will define the types for
       any nested `Struct' fields, `Array` elements, or `Map` key/value pairs.
       If a nested `Value` provides a `type` on write, the request will be
       rejected with INVALID_ARGUMENT.
       
      .google.bigtable.v2.Type type = 7;
      Specified by:
      hasType in interface ValueOrBuilder
      Returns:
      Whether the type field is set.
    • getType

      public Type getType()
       The verified `Type` of this `Value`, if it cannot be inferred.
      
       Read results will never specify the encoding for `type` since the value
       will already have been decoded by the server. Furthermore, the `type` will
       be omitted entirely if it can be inferred from a previous response. The
       exact semantics for inferring `type` will vary, and are therefore
       documented separately for each read method.
      
       When using composite types (Struct, Array, Map) only the outermost `Value`
       will specify the `type`. This top-level `type` will define the types for
       any nested `Struct' fields, `Array` elements, or `Map` key/value pairs.
       If a nested `Value` provides a `type` on write, the request will be
       rejected with INVALID_ARGUMENT.
       
      .google.bigtable.v2.Type type = 7;
      Specified by:
      getType in interface ValueOrBuilder
      Returns:
      The type.
    • setType

      public Value.Builder setType(Type value)
       The verified `Type` of this `Value`, if it cannot be inferred.
      
       Read results will never specify the encoding for `type` since the value
       will already have been decoded by the server. Furthermore, the `type` will
       be omitted entirely if it can be inferred from a previous response. The
       exact semantics for inferring `type` will vary, and are therefore
       documented separately for each read method.
      
       When using composite types (Struct, Array, Map) only the outermost `Value`
       will specify the `type`. This top-level `type` will define the types for
       any nested `Struct' fields, `Array` elements, or `Map` key/value pairs.
       If a nested `Value` provides a `type` on write, the request will be
       rejected with INVALID_ARGUMENT.
       
      .google.bigtable.v2.Type type = 7;
    • setType

      public Value.Builder setType(Type.Builder builderForValue)
       The verified `Type` of this `Value`, if it cannot be inferred.
      
       Read results will never specify the encoding for `type` since the value
       will already have been decoded by the server. Furthermore, the `type` will
       be omitted entirely if it can be inferred from a previous response. The
       exact semantics for inferring `type` will vary, and are therefore
       documented separately for each read method.
      
       When using composite types (Struct, Array, Map) only the outermost `Value`
       will specify the `type`. This top-level `type` will define the types for
       any nested `Struct' fields, `Array` elements, or `Map` key/value pairs.
       If a nested `Value` provides a `type` on write, the request will be
       rejected with INVALID_ARGUMENT.
       
      .google.bigtable.v2.Type type = 7;
    • mergeType

      public Value.Builder mergeType(Type value)
       The verified `Type` of this `Value`, if it cannot be inferred.
      
       Read results will never specify the encoding for `type` since the value
       will already have been decoded by the server. Furthermore, the `type` will
       be omitted entirely if it can be inferred from a previous response. The
       exact semantics for inferring `type` will vary, and are therefore
       documented separately for each read method.
      
       When using composite types (Struct, Array, Map) only the outermost `Value`
       will specify the `type`. This top-level `type` will define the types for
       any nested `Struct' fields, `Array` elements, or `Map` key/value pairs.
       If a nested `Value` provides a `type` on write, the request will be
       rejected with INVALID_ARGUMENT.
       
      .google.bigtable.v2.Type type = 7;
    • clearType

      public Value.Builder clearType()
       The verified `Type` of this `Value`, if it cannot be inferred.
      
       Read results will never specify the encoding for `type` since the value
       will already have been decoded by the server. Furthermore, the `type` will
       be omitted entirely if it can be inferred from a previous response. The
       exact semantics for inferring `type` will vary, and are therefore
       documented separately for each read method.
      
       When using composite types (Struct, Array, Map) only the outermost `Value`
       will specify the `type`. This top-level `type` will define the types for
       any nested `Struct' fields, `Array` elements, or `Map` key/value pairs.
       If a nested `Value` provides a `type` on write, the request will be
       rejected with INVALID_ARGUMENT.
       
      .google.bigtable.v2.Type type = 7;
    • getTypeBuilder

      public Type.Builder getTypeBuilder()
       The verified `Type` of this `Value`, if it cannot be inferred.
      
       Read results will never specify the encoding for `type` since the value
       will already have been decoded by the server. Furthermore, the `type` will
       be omitted entirely if it can be inferred from a previous response. The
       exact semantics for inferring `type` will vary, and are therefore
       documented separately for each read method.
      
       When using composite types (Struct, Array, Map) only the outermost `Value`
       will specify the `type`. This top-level `type` will define the types for
       any nested `Struct' fields, `Array` elements, or `Map` key/value pairs.
       If a nested `Value` provides a `type` on write, the request will be
       rejected with INVALID_ARGUMENT.
       
      .google.bigtable.v2.Type type = 7;
    • getTypeOrBuilder

      public TypeOrBuilder getTypeOrBuilder()
       The verified `Type` of this `Value`, if it cannot be inferred.
      
       Read results will never specify the encoding for `type` since the value
       will already have been decoded by the server. Furthermore, the `type` will
       be omitted entirely if it can be inferred from a previous response. The
       exact semantics for inferring `type` will vary, and are therefore
       documented separately for each read method.
      
       When using composite types (Struct, Array, Map) only the outermost `Value`
       will specify the `type`. This top-level `type` will define the types for
       any nested `Struct' fields, `Array` elements, or `Map` key/value pairs.
       If a nested `Value` provides a `type` on write, the request will be
       rejected with INVALID_ARGUMENT.
       
      .google.bigtable.v2.Type type = 7;
      Specified by:
      getTypeOrBuilder in interface ValueOrBuilder
    • hasRawValue

      public boolean hasRawValue()
       Represents a raw byte sequence with no type information.
       The `type` field must be omitted.
       
      bytes raw_value = 8;
      Specified by:
      hasRawValue in interface ValueOrBuilder
      Returns:
      Whether the rawValue field is set.
    • getRawValue

      public com.google.protobuf.ByteString getRawValue()
       Represents a raw byte sequence with no type information.
       The `type` field must be omitted.
       
      bytes raw_value = 8;
      Specified by:
      getRawValue in interface ValueOrBuilder
      Returns:
      The rawValue.
    • setRawValue

      public Value.Builder setRawValue(com.google.protobuf.ByteString value)
       Represents a raw byte sequence with no type information.
       The `type` field must be omitted.
       
      bytes raw_value = 8;
      Parameters:
      value - The rawValue to set.
      Returns:
      This builder for chaining.
    • clearRawValue

      public Value.Builder clearRawValue()
       Represents a raw byte sequence with no type information.
       The `type` field must be omitted.
       
      bytes raw_value = 8;
      Returns:
      This builder for chaining.
    • hasRawTimestampMicros

      public boolean hasRawTimestampMicros()
       Represents a raw cell timestamp with no type information.
       The `type` field must be omitted.
       
      int64 raw_timestamp_micros = 9;
      Specified by:
      hasRawTimestampMicros in interface ValueOrBuilder
      Returns:
      Whether the rawTimestampMicros field is set.
    • getRawTimestampMicros

      public long getRawTimestampMicros()
       Represents a raw cell timestamp with no type information.
       The `type` field must be omitted.
       
      int64 raw_timestamp_micros = 9;
      Specified by:
      getRawTimestampMicros in interface ValueOrBuilder
      Returns:
      The rawTimestampMicros.
    • setRawTimestampMicros

      public Value.Builder setRawTimestampMicros(long value)
       Represents a raw cell timestamp with no type information.
       The `type` field must be omitted.
       
      int64 raw_timestamp_micros = 9;
      Parameters:
      value - The rawTimestampMicros to set.
      Returns:
      This builder for chaining.
    • clearRawTimestampMicros

      public Value.Builder clearRawTimestampMicros()
       Represents a raw cell timestamp with no type information.
       The `type` field must be omitted.
       
      int64 raw_timestamp_micros = 9;
      Returns:
      This builder for chaining.
    • hasBytesValue

      public boolean hasBytesValue()
       Represents a typed value transported as a byte sequence.
       
      bytes bytes_value = 2;
      Specified by:
      hasBytesValue in interface ValueOrBuilder
      Returns:
      Whether the bytesValue field is set.
    • getBytesValue

      public com.google.protobuf.ByteString getBytesValue()
       Represents a typed value transported as a byte sequence.
       
      bytes bytes_value = 2;
      Specified by:
      getBytesValue in interface ValueOrBuilder
      Returns:
      The bytesValue.
    • setBytesValue

      public Value.Builder setBytesValue(com.google.protobuf.ByteString value)
       Represents a typed value transported as a byte sequence.
       
      bytes bytes_value = 2;
      Parameters:
      value - The bytesValue to set.
      Returns:
      This builder for chaining.
    • clearBytesValue

      public Value.Builder clearBytesValue()
       Represents a typed value transported as a byte sequence.
       
      bytes bytes_value = 2;
      Returns:
      This builder for chaining.
    • hasStringValue

      public boolean hasStringValue()
       Represents a typed value transported as a string.
       
      string string_value = 3;
      Specified by:
      hasStringValue in interface ValueOrBuilder
      Returns:
      Whether the stringValue field is set.
    • getStringValue

      public String getStringValue()
       Represents a typed value transported as a string.
       
      string string_value = 3;
      Specified by:
      getStringValue in interface ValueOrBuilder
      Returns:
      The stringValue.
    • getStringValueBytes

      public com.google.protobuf.ByteString getStringValueBytes()
       Represents a typed value transported as a string.
       
      string string_value = 3;
      Specified by:
      getStringValueBytes in interface ValueOrBuilder
      Returns:
      The bytes for stringValue.
    • setStringValue

      public Value.Builder setStringValue(String value)
       Represents a typed value transported as a string.
       
      string string_value = 3;
      Parameters:
      value - The stringValue to set.
      Returns:
      This builder for chaining.
    • clearStringValue

      public Value.Builder clearStringValue()
       Represents a typed value transported as a string.
       
      string string_value = 3;
      Returns:
      This builder for chaining.
    • setStringValueBytes

      public Value.Builder setStringValueBytes(com.google.protobuf.ByteString value)
       Represents a typed value transported as a string.
       
      string string_value = 3;
      Parameters:
      value - The bytes for stringValue to set.
      Returns:
      This builder for chaining.
    • hasIntValue

      public boolean hasIntValue()
       Represents a typed value transported as an integer.
       
      int64 int_value = 6;
      Specified by:
      hasIntValue in interface ValueOrBuilder
      Returns:
      Whether the intValue field is set.
    • getIntValue

      public long getIntValue()
       Represents a typed value transported as an integer.
       
      int64 int_value = 6;
      Specified by:
      getIntValue in interface ValueOrBuilder
      Returns:
      The intValue.
    • setIntValue

      public Value.Builder setIntValue(long value)
       Represents a typed value transported as an integer.
       
      int64 int_value = 6;
      Parameters:
      value - The intValue to set.
      Returns:
      This builder for chaining.
    • clearIntValue

      public Value.Builder clearIntValue()
       Represents a typed value transported as an integer.
       
      int64 int_value = 6;
      Returns:
      This builder for chaining.
    • hasBoolValue

      public boolean hasBoolValue()
       Represents a typed value transported as a boolean.
       
      bool bool_value = 10;
      Specified by:
      hasBoolValue in interface ValueOrBuilder
      Returns:
      Whether the boolValue field is set.
    • getBoolValue

      public boolean getBoolValue()
       Represents a typed value transported as a boolean.
       
      bool bool_value = 10;
      Specified by:
      getBoolValue in interface ValueOrBuilder
      Returns:
      The boolValue.
    • setBoolValue

      public Value.Builder setBoolValue(boolean value)
       Represents a typed value transported as a boolean.
       
      bool bool_value = 10;
      Parameters:
      value - The boolValue to set.
      Returns:
      This builder for chaining.
    • clearBoolValue

      public Value.Builder clearBoolValue()
       Represents a typed value transported as a boolean.
       
      bool bool_value = 10;
      Returns:
      This builder for chaining.
    • hasFloatValue

      public boolean hasFloatValue()
       Represents a typed value transported as a floating point number.
       Does not support NaN or infinities.
       
      double float_value = 11;
      Specified by:
      hasFloatValue in interface ValueOrBuilder
      Returns:
      Whether the floatValue field is set.
    • getFloatValue

      public double getFloatValue()
       Represents a typed value transported as a floating point number.
       Does not support NaN or infinities.
       
      double float_value = 11;
      Specified by:
      getFloatValue in interface ValueOrBuilder
      Returns:
      The floatValue.
    • setFloatValue

      public Value.Builder setFloatValue(double value)
       Represents a typed value transported as a floating point number.
       Does not support NaN or infinities.
       
      double float_value = 11;
      Parameters:
      value - The floatValue to set.
      Returns:
      This builder for chaining.
    • clearFloatValue

      public Value.Builder clearFloatValue()
       Represents a typed value transported as a floating point number.
       Does not support NaN or infinities.
       
      double float_value = 11;
      Returns:
      This builder for chaining.
    • hasTimestampValue

      public boolean hasTimestampValue()
       Represents a typed value transported as a timestamp.
       
      .google.protobuf.Timestamp timestamp_value = 12;
      Specified by:
      hasTimestampValue in interface ValueOrBuilder
      Returns:
      Whether the timestampValue field is set.
    • getTimestampValue

      public com.google.protobuf.Timestamp getTimestampValue()
       Represents a typed value transported as a timestamp.
       
      .google.protobuf.Timestamp timestamp_value = 12;
      Specified by:
      getTimestampValue in interface ValueOrBuilder
      Returns:
      The timestampValue.
    • setTimestampValue

      public Value.Builder setTimestampValue(com.google.protobuf.Timestamp value)
       Represents a typed value transported as a timestamp.
       
      .google.protobuf.Timestamp timestamp_value = 12;
    • setTimestampValue

      public Value.Builder setTimestampValue(com.google.protobuf.Timestamp.Builder builderForValue)
       Represents a typed value transported as a timestamp.
       
      .google.protobuf.Timestamp timestamp_value = 12;
    • mergeTimestampValue

      public Value.Builder mergeTimestampValue(com.google.protobuf.Timestamp value)
       Represents a typed value transported as a timestamp.
       
      .google.protobuf.Timestamp timestamp_value = 12;
    • clearTimestampValue

      public Value.Builder clearTimestampValue()
       Represents a typed value transported as a timestamp.
       
      .google.protobuf.Timestamp timestamp_value = 12;
    • getTimestampValueBuilder

      public com.google.protobuf.Timestamp.Builder getTimestampValueBuilder()
       Represents a typed value transported as a timestamp.
       
      .google.protobuf.Timestamp timestamp_value = 12;
    • getTimestampValueOrBuilder

      public com.google.protobuf.TimestampOrBuilder getTimestampValueOrBuilder()
       Represents a typed value transported as a timestamp.
       
      .google.protobuf.Timestamp timestamp_value = 12;
      Specified by:
      getTimestampValueOrBuilder in interface ValueOrBuilder
    • hasDateValue

      public boolean hasDateValue()
       Represents a typed value transported as a date.
       
      .google.type.Date date_value = 13;
      Specified by:
      hasDateValue in interface ValueOrBuilder
      Returns:
      Whether the dateValue field is set.
    • getDateValue

      public com.google.type.Date getDateValue()
       Represents a typed value transported as a date.
       
      .google.type.Date date_value = 13;
      Specified by:
      getDateValue in interface ValueOrBuilder
      Returns:
      The dateValue.
    • setDateValue

      public Value.Builder setDateValue(com.google.type.Date value)
       Represents a typed value transported as a date.
       
      .google.type.Date date_value = 13;
    • setDateValue

      public Value.Builder setDateValue(com.google.type.Date.Builder builderForValue)
       Represents a typed value transported as a date.
       
      .google.type.Date date_value = 13;
    • mergeDateValue

      public Value.Builder mergeDateValue(com.google.type.Date value)
       Represents a typed value transported as a date.
       
      .google.type.Date date_value = 13;
    • clearDateValue

      public Value.Builder clearDateValue()
       Represents a typed value transported as a date.
       
      .google.type.Date date_value = 13;
    • getDateValueBuilder

      public com.google.type.Date.Builder getDateValueBuilder()
       Represents a typed value transported as a date.
       
      .google.type.Date date_value = 13;
    • getDateValueOrBuilder

      public com.google.type.DateOrBuilder getDateValueOrBuilder()
       Represents a typed value transported as a date.
       
      .google.type.Date date_value = 13;
      Specified by:
      getDateValueOrBuilder in interface ValueOrBuilder
    • hasArrayValue

      public boolean hasArrayValue()
       Represents a typed value transported as a sequence of values.
       To differentiate between `Struct`, `Array`, and `Map`, the outermost
       `Value` must provide an explicit `type` on write. This `type` will
       apply recursively to the nested `Struct` fields, `Array` elements,
       or `Map` key/value pairs, which *must not* supply their own `type`.
       
      .google.bigtable.v2.ArrayValue array_value = 4;
      Specified by:
      hasArrayValue in interface ValueOrBuilder
      Returns:
      Whether the arrayValue field is set.
    • getArrayValue

      public ArrayValue getArrayValue()
       Represents a typed value transported as a sequence of values.
       To differentiate between `Struct`, `Array`, and `Map`, the outermost
       `Value` must provide an explicit `type` on write. This `type` will
       apply recursively to the nested `Struct` fields, `Array` elements,
       or `Map` key/value pairs, which *must not* supply their own `type`.
       
      .google.bigtable.v2.ArrayValue array_value = 4;
      Specified by:
      getArrayValue in interface ValueOrBuilder
      Returns:
      The arrayValue.
    • setArrayValue

      public Value.Builder setArrayValue(ArrayValue value)
       Represents a typed value transported as a sequence of values.
       To differentiate between `Struct`, `Array`, and `Map`, the outermost
       `Value` must provide an explicit `type` on write. This `type` will
       apply recursively to the nested `Struct` fields, `Array` elements,
       or `Map` key/value pairs, which *must not* supply their own `type`.
       
      .google.bigtable.v2.ArrayValue array_value = 4;
    • setArrayValue

      public Value.Builder setArrayValue(ArrayValue.Builder builderForValue)
       Represents a typed value transported as a sequence of values.
       To differentiate between `Struct`, `Array`, and `Map`, the outermost
       `Value` must provide an explicit `type` on write. This `type` will
       apply recursively to the nested `Struct` fields, `Array` elements,
       or `Map` key/value pairs, which *must not* supply their own `type`.
       
      .google.bigtable.v2.ArrayValue array_value = 4;
    • mergeArrayValue

      public Value.Builder mergeArrayValue(ArrayValue value)
       Represents a typed value transported as a sequence of values.
       To differentiate between `Struct`, `Array`, and `Map`, the outermost
       `Value` must provide an explicit `type` on write. This `type` will
       apply recursively to the nested `Struct` fields, `Array` elements,
       or `Map` key/value pairs, which *must not* supply their own `type`.
       
      .google.bigtable.v2.ArrayValue array_value = 4;
    • clearArrayValue

      public Value.Builder clearArrayValue()
       Represents a typed value transported as a sequence of values.
       To differentiate between `Struct`, `Array`, and `Map`, the outermost
       `Value` must provide an explicit `type` on write. This `type` will
       apply recursively to the nested `Struct` fields, `Array` elements,
       or `Map` key/value pairs, which *must not* supply their own `type`.
       
      .google.bigtable.v2.ArrayValue array_value = 4;
    • getArrayValueBuilder

      public ArrayValue.Builder getArrayValueBuilder()
       Represents a typed value transported as a sequence of values.
       To differentiate between `Struct`, `Array`, and `Map`, the outermost
       `Value` must provide an explicit `type` on write. This `type` will
       apply recursively to the nested `Struct` fields, `Array` elements,
       or `Map` key/value pairs, which *must not* supply their own `type`.
       
      .google.bigtable.v2.ArrayValue array_value = 4;
    • getArrayValueOrBuilder

      public ArrayValueOrBuilder getArrayValueOrBuilder()
       Represents a typed value transported as a sequence of values.
       To differentiate between `Struct`, `Array`, and `Map`, the outermost
       `Value` must provide an explicit `type` on write. This `type` will
       apply recursively to the nested `Struct` fields, `Array` elements,
       or `Map` key/value pairs, which *must not* supply their own `type`.
       
      .google.bigtable.v2.ArrayValue array_value = 4;
      Specified by:
      getArrayValueOrBuilder in interface ValueOrBuilder
    • setUnknownFields

      public final Value.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      Specified by:
      setUnknownFields in interface com.google.protobuf.Message.Builder
      Overrides:
      setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<Value.Builder>
    • mergeUnknownFields

      public final Value.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
      Specified by:
      mergeUnknownFields in interface com.google.protobuf.Message.Builder
      Overrides:
      mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<Value.Builder>