Interface Storage.StreamPositionOrBuilder

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

    public static interface Storage.StreamPositionOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long getOffset()
      Position in the stream.
      Storage.Stream getStream()
      Identifier for a given Stream.
      Storage.StreamOrBuilder getStreamOrBuilder()
      Identifier for a given Stream.
      boolean hasStream()
      Identifier for a given Stream.
      • 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

      • hasStream

        boolean hasStream()
         Identifier for a given Stream.
         
        .google.cloud.bigquery.storage.v1beta1.Stream stream = 1;
        Returns:
        Whether the stream field is set.
      • getStream

        Storage.Stream getStream()
         Identifier for a given Stream.
         
        .google.cloud.bigquery.storage.v1beta1.Stream stream = 1;
        Returns:
        The stream.
      • getStreamOrBuilder

        Storage.StreamOrBuilder getStreamOrBuilder()
         Identifier for a given Stream.
         
        .google.cloud.bigquery.storage.v1beta1.Stream stream = 1;
      • getOffset

        long getOffset()
         Position in the stream.
         
        int64 offset = 2;
        Returns:
        The offset.