Interface KeyRangeOrBuilder

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

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

    Modifier and Type
    Method
    Description
    com.google.protobuf.ListValue
    If the end is closed, then the range includes all rows whose first `len(end_closed)` key columns exactly match `end_closed`.
    com.google.protobuf.ListValueOrBuilder
    If the end is closed, then the range includes all rows whose first `len(end_closed)` key columns exactly match `end_closed`.
     
    com.google.protobuf.ListValue
    If the end is open, then the range excludes rows whose first `len(end_open)` key columns exactly match `end_open`.
    com.google.protobuf.ListValueOrBuilder
    If the end is open, then the range excludes rows whose first `len(end_open)` key columns exactly match `end_open`.
    com.google.protobuf.ListValue
    If the start is closed, then the range includes all rows whose first `len(start_closed)` key columns exactly match `start_closed`.
    com.google.protobuf.ListValueOrBuilder
    If the start is closed, then the range includes all rows whose first `len(start_closed)` key columns exactly match `start_closed`.
     
    com.google.protobuf.ListValue
    If the start is open, then the range excludes rows whose first `len(start_open)` key columns exactly match `start_open`.
    com.google.protobuf.ListValueOrBuilder
    If the start is open, then the range excludes rows whose first `len(start_open)` key columns exactly match `start_open`.
    boolean
    If the end is closed, then the range includes all rows whose first `len(end_closed)` key columns exactly match `end_closed`.
    boolean
    If the end is open, then the range excludes rows whose first `len(end_open)` key columns exactly match `end_open`.
    boolean
    If the start is closed, then the range includes all rows whose first `len(start_closed)` key columns exactly match `start_closed`.
    boolean
    If the start is open, then the range excludes rows whose first `len(start_open)` key columns exactly match `start_open`.

    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

    • hasStartClosed

      boolean hasStartClosed()
       If the start is closed, then the range includes all rows whose
       first `len(start_closed)` key columns exactly match `start_closed`.
       
      .google.protobuf.ListValue start_closed = 1;
      Returns:
      Whether the startClosed field is set.
    • getStartClosed

      com.google.protobuf.ListValue getStartClosed()
       If the start is closed, then the range includes all rows whose
       first `len(start_closed)` key columns exactly match `start_closed`.
       
      .google.protobuf.ListValue start_closed = 1;
      Returns:
      The startClosed.
    • getStartClosedOrBuilder

      com.google.protobuf.ListValueOrBuilder getStartClosedOrBuilder()
       If the start is closed, then the range includes all rows whose
       first `len(start_closed)` key columns exactly match `start_closed`.
       
      .google.protobuf.ListValue start_closed = 1;
    • hasStartOpen

      boolean hasStartOpen()
       If the start is open, then the range excludes rows whose first
       `len(start_open)` key columns exactly match `start_open`.
       
      .google.protobuf.ListValue start_open = 2;
      Returns:
      Whether the startOpen field is set.
    • getStartOpen

      com.google.protobuf.ListValue getStartOpen()
       If the start is open, then the range excludes rows whose first
       `len(start_open)` key columns exactly match `start_open`.
       
      .google.protobuf.ListValue start_open = 2;
      Returns:
      The startOpen.
    • getStartOpenOrBuilder

      com.google.protobuf.ListValueOrBuilder getStartOpenOrBuilder()
       If the start is open, then the range excludes rows whose first
       `len(start_open)` key columns exactly match `start_open`.
       
      .google.protobuf.ListValue start_open = 2;
    • hasEndClosed

      boolean hasEndClosed()
       If the end is closed, then the range includes all rows whose
       first `len(end_closed)` key columns exactly match `end_closed`.
       
      .google.protobuf.ListValue end_closed = 3;
      Returns:
      Whether the endClosed field is set.
    • getEndClosed

      com.google.protobuf.ListValue getEndClosed()
       If the end is closed, then the range includes all rows whose
       first `len(end_closed)` key columns exactly match `end_closed`.
       
      .google.protobuf.ListValue end_closed = 3;
      Returns:
      The endClosed.
    • getEndClosedOrBuilder

      com.google.protobuf.ListValueOrBuilder getEndClosedOrBuilder()
       If the end is closed, then the range includes all rows whose
       first `len(end_closed)` key columns exactly match `end_closed`.
       
      .google.protobuf.ListValue end_closed = 3;
    • hasEndOpen

      boolean hasEndOpen()
       If the end is open, then the range excludes rows whose first
       `len(end_open)` key columns exactly match `end_open`.
       
      .google.protobuf.ListValue end_open = 4;
      Returns:
      Whether the endOpen field is set.
    • getEndOpen

      com.google.protobuf.ListValue getEndOpen()
       If the end is open, then the range excludes rows whose first
       `len(end_open)` key columns exactly match `end_open`.
       
      .google.protobuf.ListValue end_open = 4;
      Returns:
      The endOpen.
    • getEndOpenOrBuilder

      com.google.protobuf.ListValueOrBuilder getEndOpenOrBuilder()
       If the end is open, then the range excludes rows whose first
       `len(end_open)` key columns exactly match `end_open`.
       
      .google.protobuf.ListValue end_open = 4;
    • getStartKeyTypeCase

      KeyRange.StartKeyTypeCase getStartKeyTypeCase()
    • getEndKeyTypeCase

      KeyRange.EndKeyTypeCase getEndKeyTypeCase()