Class Value.Builder

  • All Implemented Interfaces:
    MessageLite.Builder, MessageLiteOrBuilder, ValueOrBuilder, java.lang.Cloneable
    Enclosing class:
    Value

    public static final class Value.Builder
    extends GeneratedMessageLite.Builder<Value,​Value.Builder>
    implements ValueOrBuilder
     `Value` represents a dynamically typed value which can be either
     null, a number, a string, a boolean, a recursive struct value, or a
     list of values. A producer of value is expected to set one of these
     variants. Absence of any variant indicates an error.
     The JSON representation for `Value` is JSON value.
     
    Protobuf type google.protobuf.Value
    • Constructor Detail

      • Builder

        private Builder()
    • Method Detail

      • hasNullValue

        public boolean hasNullValue()
         Represents a null value.
         
        .google.protobuf.NullValue null_value = 1;
        Specified by:
        hasNullValue in interface ValueOrBuilder
        Returns:
        Whether the nullValue field is set.
      • getNullValueValue

        public int getNullValueValue()
         Represents a null value.
         
        .google.protobuf.NullValue null_value = 1;
        Specified by:
        getNullValueValue in interface ValueOrBuilder
        Returns:
        The enum numeric value on the wire for nullValue.
      • setNullValueValue

        public Value.Builder setNullValueValue​(int value)
         Represents a null value.
         
        .google.protobuf.NullValue null_value = 1;
        Parameters:
        value - The enum numeric value on the wire for nullValue to set.
        Returns:
        This builder for chaining.
      • getNullValue

        public NullValue getNullValue()
         Represents a null value.
         
        .google.protobuf.NullValue null_value = 1;
        Specified by:
        getNullValue in interface ValueOrBuilder
        Returns:
        The nullValue.
      • setNullValue

        public Value.Builder setNullValue​(NullValue value)
         Represents a null value.
         
        .google.protobuf.NullValue null_value = 1;
        Parameters:
        value - The nullValue to set.
        Returns:
        This builder for chaining.
      • clearNullValue

        public Value.Builder clearNullValue()
         Represents a null value.
         
        .google.protobuf.NullValue null_value = 1;
        Returns:
        This builder for chaining.
      • hasNumberValue

        public boolean hasNumberValue()
         Represents a double value.
         
        double number_value = 2;
        Specified by:
        hasNumberValue in interface ValueOrBuilder
        Returns:
        Whether the numberValue field is set.
      • getNumberValue

        public double getNumberValue()
         Represents a double value.
         
        double number_value = 2;
        Specified by:
        getNumberValue in interface ValueOrBuilder
        Returns:
        The numberValue.
      • setNumberValue

        public Value.Builder setNumberValue​(double value)
         Represents a double value.
         
        double number_value = 2;
        Parameters:
        value - The numberValue to set.
        Returns:
        This builder for chaining.
      • clearNumberValue

        public Value.Builder clearNumberValue()
         Represents a double value.
         
        double number_value = 2;
        Returns:
        This builder for chaining.
      • hasStringValue

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

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

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

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

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

        public Value.Builder setStringValueBytes​(ByteString value)
         Represents a string value.
         
        string string_value = 3;
        Parameters:
        value - The bytes for stringValue to set.
        Returns:
        This builder for chaining.
      • hasBoolValue

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

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

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

        public Value.Builder clearBoolValue()
         Represents a boolean value.
         
        bool bool_value = 4;
        Returns:
        This builder for chaining.
      • hasStructValue

        public boolean hasStructValue()
         Represents a structured value.
         
        .google.protobuf.Struct struct_value = 5;
        Specified by:
        hasStructValue in interface ValueOrBuilder
        Returns:
        Whether the structValue field is set.
      • getStructValue

        public Struct getStructValue()
         Represents a structured value.
         
        .google.protobuf.Struct struct_value = 5;
        Specified by:
        getStructValue in interface ValueOrBuilder
        Returns:
        The structValue.
      • setStructValue

        public Value.Builder setStructValue​(Struct value)
         Represents a structured value.
         
        .google.protobuf.Struct struct_value = 5;
      • setStructValue

        public Value.Builder setStructValue​(Struct.Builder builderForValue)
         Represents a structured value.
         
        .google.protobuf.Struct struct_value = 5;
      • mergeStructValue

        public Value.Builder mergeStructValue​(Struct value)
         Represents a structured value.
         
        .google.protobuf.Struct struct_value = 5;
      • clearStructValue

        public Value.Builder clearStructValue()
         Represents a structured value.
         
        .google.protobuf.Struct struct_value = 5;
      • hasListValue

        public boolean hasListValue()
         Represents a repeated `Value`.
         
        .google.protobuf.ListValue list_value = 6;
        Specified by:
        hasListValue in interface ValueOrBuilder
        Returns:
        Whether the listValue field is set.
      • getListValue

        public ListValue getListValue()
         Represents a repeated `Value`.
         
        .google.protobuf.ListValue list_value = 6;
        Specified by:
        getListValue in interface ValueOrBuilder
        Returns:
        The listValue.
      • setListValue

        public Value.Builder setListValue​(ListValue value)
         Represents a repeated `Value`.
         
        .google.protobuf.ListValue list_value = 6;
      • setListValue

        public Value.Builder setListValue​(ListValue.Builder builderForValue)
         Represents a repeated `Value`.
         
        .google.protobuf.ListValue list_value = 6;
      • mergeListValue

        public Value.Builder mergeListValue​(ListValue value)
         Represents a repeated `Value`.
         
        .google.protobuf.ListValue list_value = 6;
      • clearListValue

        public Value.Builder clearListValue()
         Represents a repeated `Value`.
         
        .google.protobuf.ListValue list_value = 6;