Package com.google.bigtable.v2
Interface ColumnOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Column,Column.Builder
public interface ColumnOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CellgetCells(int index)Must not be empty.intgetCellsCount()Must not be empty.List<Cell>getCellsList()Must not be empty.CellOrBuildergetCellsOrBuilder(int index)Must not be empty.List<? extends CellOrBuilder>getCellsOrBuilderList()Must not be empty.com.google.protobuf.ByteStringgetQualifier()The unique key which identifies this column within its family.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getQualifier
com.google.protobuf.ByteString getQualifier()
The unique key which identifies this column within its family. This is the same key that's used to identify the column in, for example, a RowFilter which sets its `column_qualifier_regex_filter` field. May contain any byte string, including the empty string, up to 16kiB in length.
bytes qualifier = 1;- Returns:
- The qualifier.
-
getCellsList
List<Cell> getCellsList()
Must not be empty. Sorted in order of decreasing "timestamp_micros".
repeated .google.bigtable.v2.Cell cells = 2;
-
getCells
Cell getCells(int index)
Must not be empty. Sorted in order of decreasing "timestamp_micros".
repeated .google.bigtable.v2.Cell cells = 2;
-
getCellsCount
int getCellsCount()
Must not be empty. Sorted in order of decreasing "timestamp_micros".
repeated .google.bigtable.v2.Cell cells = 2;
-
getCellsOrBuilderList
List<? extends CellOrBuilder> getCellsOrBuilderList()
Must not be empty. Sorted in order of decreasing "timestamp_micros".
repeated .google.bigtable.v2.Cell cells = 2;
-
getCellsOrBuilder
CellOrBuilder getCellsOrBuilder(int index)
Must not be empty. Sorted in order of decreasing "timestamp_micros".
repeated .google.bigtable.v2.Cell cells = 2;
-
-