Package com.google.bigtable.v2
Interface RowSetOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RowSet,RowSet.Builder
public interface RowSetOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteStringgetRowKeys(int index)Single rows included in the set.intgetRowKeysCount()Single rows included in the set.List<com.google.protobuf.ByteString>getRowKeysList()Single rows included in the set.RowRangegetRowRanges(int index)Contiguous row ranges included in the set.intgetRowRangesCount()Contiguous row ranges included in the set.List<RowRange>getRowRangesList()Contiguous row ranges included in the set.RowRangeOrBuildergetRowRangesOrBuilder(int index)Contiguous row ranges included in the set.List<? extends RowRangeOrBuilder>getRowRangesOrBuilderList()Contiguous row ranges included in the set.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRowKeysList
List<com.google.protobuf.ByteString> getRowKeysList()
Single rows included in the set.
repeated bytes row_keys = 1;- Returns:
- A list containing the rowKeys.
-
getRowKeysCount
int getRowKeysCount()
Single rows included in the set.
repeated bytes row_keys = 1;- Returns:
- The count of rowKeys.
-
getRowKeys
com.google.protobuf.ByteString getRowKeys(int index)
Single rows included in the set.
repeated bytes row_keys = 1;- Parameters:
index- The index of the element to return.- Returns:
- The rowKeys at the given index.
-
getRowRangesList
List<RowRange> getRowRangesList()
Contiguous row ranges included in the set.
repeated .google.bigtable.v2.RowRange row_ranges = 2;
-
getRowRanges
RowRange getRowRanges(int index)
Contiguous row ranges included in the set.
repeated .google.bigtable.v2.RowRange row_ranges = 2;
-
getRowRangesCount
int getRowRangesCount()
Contiguous row ranges included in the set.
repeated .google.bigtable.v2.RowRange row_ranges = 2;
-
getRowRangesOrBuilderList
List<? extends RowRangeOrBuilder> getRowRangesOrBuilderList()
Contiguous row ranges included in the set.
repeated .google.bigtable.v2.RowRange row_ranges = 2;
-
getRowRangesOrBuilder
RowRangeOrBuilder getRowRangesOrBuilder(int index)
Contiguous row ranges included in the set.
repeated .google.bigtable.v2.RowRange row_ranges = 2;
-
-