Interface KeySetOrBuilder

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

public interface KeySetOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Details

    • getPointList

      List<ValueList> getPointList()
       A list of specific keys. Entries in "keys" should have exactly as
       many elements as there are columns in the primary or index key
       with which this "KeySet" is used.
       
      repeated .google.spanner.executor.v1.ValueList point = 1;
    • getPoint

      ValueList getPoint(int index)
       A list of specific keys. Entries in "keys" should have exactly as
       many elements as there are columns in the primary or index key
       with which this "KeySet" is used.
       
      repeated .google.spanner.executor.v1.ValueList point = 1;
    • getPointCount

      int getPointCount()
       A list of specific keys. Entries in "keys" should have exactly as
       many elements as there are columns in the primary or index key
       with which this "KeySet" is used.
       
      repeated .google.spanner.executor.v1.ValueList point = 1;
    • getPointOrBuilderList

      List<? extends ValueListOrBuilder> getPointOrBuilderList()
       A list of specific keys. Entries in "keys" should have exactly as
       many elements as there are columns in the primary or index key
       with which this "KeySet" is used.
       
      repeated .google.spanner.executor.v1.ValueList point = 1;
    • getPointOrBuilder

      ValueListOrBuilder getPointOrBuilder(int index)
       A list of specific keys. Entries in "keys" should have exactly as
       many elements as there are columns in the primary or index key
       with which this "KeySet" is used.
       
      repeated .google.spanner.executor.v1.ValueList point = 1;
    • getRangeList

      List<KeyRange> getRangeList()
       A list of key ranges.
       
      repeated .google.spanner.executor.v1.KeyRange range = 2;
    • getRange

      KeyRange getRange(int index)
       A list of key ranges.
       
      repeated .google.spanner.executor.v1.KeyRange range = 2;
    • getRangeCount

      int getRangeCount()
       A list of key ranges.
       
      repeated .google.spanner.executor.v1.KeyRange range = 2;
    • getRangeOrBuilderList

      List<? extends KeyRangeOrBuilder> getRangeOrBuilderList()
       A list of key ranges.
       
      repeated .google.spanner.executor.v1.KeyRange range = 2;
    • getRangeOrBuilder

      KeyRangeOrBuilder getRangeOrBuilder(int index)
       A list of key ranges.
       
      repeated .google.spanner.executor.v1.KeyRange range = 2;
    • getAll

      boolean getAll()
       For convenience "all" can be set to "true" to indicate that this
       "KeySet" matches all keys in the table or index. Note that any keys
       specified in "keys" or "ranges" are only yielded once.
       
      bool all = 3;
      Returns:
      The all.