Package com.google.spanner.executor.v1
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 Summary
Modifier and TypeMethodDescriptionbooleangetAll()For convenience "all" can be set to "true" to indicate that this "KeySet" matches all keys in the table or index.getPoint(int index) A list of specific keys.intA list of specific keys.A list of specific keys.getPointOrBuilder(int index) A list of specific keys.List<? extends ValueListOrBuilder>A list of specific keys.getRange(int index) A list of key ranges.intA list of key ranges.A list of key ranges.getRangeOrBuilder(int index) A list of key ranges.List<? extends KeyRangeOrBuilder>A list of key ranges.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
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
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
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
A list of key ranges.
repeated .google.spanner.executor.v1.KeyRange range = 2; -
getRange
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
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.
-