Interface Common.TypedValueOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Common.TypedValue, Common.TypedValue.Builder
    Enclosing class:
    Common

    public static interface Common.TypedValueOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Detail

      • getTypeValue

        int getTypeValue()
         The actual type that was serialized in the general attribute below
         
        .Rep type = 1;
      • getType

        Common.Rep getType()
         The actual type that was serialized in the general attribute below
         
        .Rep type = 1;
      • getBoolValue

        boolean getBoolValue()
         boolean
         
        bool bool_value = 2;
      • getStringValue

        java.lang.String getStringValue()
         char/varchar
         
        string string_value = 3;
      • getStringValueBytes

        com.google.protobuf.ByteString getStringValueBytes()
         char/varchar
         
        string string_value = 3;
      • getNumberValue

        long getNumberValue()
         var-len encoding lets us shove anything from byte to long
         
        sint64 number_value = 4;
      • getBytesValue

        com.google.protobuf.ByteString getBytesValue()
         includes numeric types and date/time types.
         
        bytes bytes_value = 5;
      • getDoubleValue

        double getDoubleValue()
         big numbers
         
        double double_value = 6;
      • getNull

        boolean getNull()
         a null object
         
        bool null = 7;
      • getArrayValueList

        java.util.List<Common.TypedValue> getArrayValueList()
         The Array
         
        repeated .TypedValue array_value = 8;
      • getArrayValue

        Common.TypedValue getArrayValue​(int index)
         The Array
         
        repeated .TypedValue array_value = 8;
      • getArrayValueCount

        int getArrayValueCount()
         The Array
         
        repeated .TypedValue array_value = 8;
      • getArrayValueOrBuilderList

        java.util.List<? extends Common.TypedValueOrBuilder> getArrayValueOrBuilderList()
         The Array
         
        repeated .TypedValue array_value = 8;
      • getArrayValueOrBuilder

        Common.TypedValueOrBuilder getArrayValueOrBuilder​(int index)
         The Array
         
        repeated .TypedValue array_value = 8;
      • getComponentTypeValue

        int getComponentTypeValue()
         If an Array, the representation for the array values
         
        .Rep component_type = 9;
      • getComponentType

        Common.Rep getComponentType()
         If an Array, the representation for the array values
         
        .Rep component_type = 9;
      • getImplicitlyNull

        boolean getImplicitlyNull()
         Differentiate between explicitly null (user-set) and implicitly null
         
        bool implicitly_null = 10;