Interface TimestampRangeOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long getEndTimestampMicros()
      Exclusive upper bound.
      long getStartTimestampMicros()
      Inclusive lower bound.
      • 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 Detail

      • getStartTimestampMicros

        long getStartTimestampMicros()
         Inclusive lower bound. If left empty, interpreted as 0.
         
        int64 start_timestamp_micros = 1;
        Returns:
        The startTimestampMicros.
      • getEndTimestampMicros

        long getEndTimestampMicros()
         Exclusive upper bound. If left empty, interpreted as infinity.
         
        int64 end_timestamp_micros = 2;
        Returns:
        The endTimestampMicros.