Interface AttributeValueOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    AttributeValue, AttributeValue.Builder

    public interface AttributeValueOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Detail

      • hasStringValue

        boolean hasStringValue()
         A string up to 256 bytes long.
         
        .google.devtools.cloudtrace.v2.TruncatableString string_value = 1;
        Returns:
        Whether the stringValue field is set.
      • getStringValue

        TruncatableString getStringValue()
         A string up to 256 bytes long.
         
        .google.devtools.cloudtrace.v2.TruncatableString string_value = 1;
        Returns:
        The stringValue.
      • getStringValueOrBuilder

        TruncatableStringOrBuilder getStringValueOrBuilder()
         A string up to 256 bytes long.
         
        .google.devtools.cloudtrace.v2.TruncatableString string_value = 1;
      • hasIntValue

        boolean hasIntValue()
         A 64-bit signed integer.
         
        int64 int_value = 2;
        Returns:
        Whether the intValue field is set.
      • getIntValue

        long getIntValue()
         A 64-bit signed integer.
         
        int64 int_value = 2;
        Returns:
        The intValue.
      • hasBoolValue

        boolean hasBoolValue()
         A Boolean value represented by `true` or `false`.
         
        bool bool_value = 3;
        Returns:
        Whether the boolValue field is set.
      • getBoolValue

        boolean getBoolValue()
         A Boolean value represented by `true` or `false`.
         
        bool bool_value = 3;
        Returns:
        The boolValue.