Interface DropRowRangeRequestOrBuilder

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

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

    Modifier and Type
    Method
    Description
    boolean
    Delete all rows in the table.
    Required.
    com.google.protobuf.ByteString
    Required.
    com.google.protobuf.ByteString
    Delete all rows that start with this row key prefix.
     
    boolean
    Delete all rows in the table.
    boolean
    Delete all rows that start with this row key prefix.

    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

    • getName

      String getName()
       Required. The unique name of the table on which to drop a range of rows.
       Values are of the form
       `projects/{project}/instances/{instance}/tables/{table}`.
       
      string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
      Returns:
      The name.
    • getNameBytes

      com.google.protobuf.ByteString getNameBytes()
       Required. The unique name of the table on which to drop a range of rows.
       Values are of the form
       `projects/{project}/instances/{instance}/tables/{table}`.
       
      string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
      Returns:
      The bytes for name.
    • hasRowKeyPrefix

      boolean hasRowKeyPrefix()
       Delete all rows that start with this row key prefix. Prefix cannot be
       zero length.
       
      bytes row_key_prefix = 2;
      Returns:
      Whether the rowKeyPrefix field is set.
    • getRowKeyPrefix

      com.google.protobuf.ByteString getRowKeyPrefix()
       Delete all rows that start with this row key prefix. Prefix cannot be
       zero length.
       
      bytes row_key_prefix = 2;
      Returns:
      The rowKeyPrefix.
    • hasDeleteAllDataFromTable

      boolean hasDeleteAllDataFromTable()
       Delete all rows in the table. Setting this to false is a no-op.
       
      bool delete_all_data_from_table = 3;
      Returns:
      Whether the deleteAllDataFromTable field is set.
    • getDeleteAllDataFromTable

      boolean getDeleteAllDataFromTable()
       Delete all rows in the table. Setting this to false is a no-op.
       
      bool delete_all_data_from_table = 3;
      Returns:
      The deleteAllDataFromTable.
    • getTargetCase