Interface ValueOrBuilder

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

public interface ValueOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Represents a typed value transported as an integer.
     
    long
    Represents a raw cell timestamp with no type information.
    com.google.protobuf.ByteString
    Represents a raw byte sequence with no type information.
    boolean
    Represents a typed value transported as an integer.
    boolean
    Represents a raw cell timestamp with no type information.
    boolean
    Represents a raw byte sequence with no type information.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • hasRawValue

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

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

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

      long getRawTimestampMicros()
       Represents a raw cell timestamp with no type information.
       The `type` field must be omitted.
       
      int64 raw_timestamp_micros = 9;
      Returns:
      The rawTimestampMicros.
    • hasIntValue

      boolean hasIntValue()
       Represents a typed value transported as an integer.
       Default type for writes: `Int64`
       
      int64 int_value = 6;
      Returns:
      Whether the intValue field is set.
    • getIntValue

      long getIntValue()
       Represents a typed value transported as an integer.
       Default type for writes: `Int64`
       
      int64 int_value = 6;
      Returns:
      The intValue.
    • getKindCase

      Value.KindCase getKindCase()