public interface ColumnOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getCells(int index)
public abstract Cell getCells(int index)
Must not be empty. Sorted in order of decreasing "timestamp_micros".
repeated .google.bigtable.v2.Cell cells = 2;
Name | Description |
index | int |
Type | Description |
Cell |
getCellsCount()
public abstract int getCellsCount()
Must not be empty. Sorted in order of decreasing "timestamp_micros".
repeated .google.bigtable.v2.Cell cells = 2;
Type | Description |
int |
getCellsList()
public abstract List<Cell> getCellsList()
Must not be empty. Sorted in order of decreasing "timestamp_micros".
repeated .google.bigtable.v2.Cell cells = 2;
Type | Description |
List<Cell> |
getCellsOrBuilder(int index)
public abstract CellOrBuilder getCellsOrBuilder(int index)
Must not be empty. Sorted in order of decreasing "timestamp_micros".
repeated .google.bigtable.v2.Cell cells = 2;
Name | Description |
index | int |
Type | Description |
CellOrBuilder |
getCellsOrBuilderList()
public abstract List<? extends CellOrBuilder> getCellsOrBuilderList()
Must not be empty. Sorted in order of decreasing "timestamp_micros".
repeated .google.bigtable.v2.Cell cells = 2;
Type | Description |
List<? extends com.google.bigtable.v2.CellOrBuilder> |
getQualifier()
public abstract 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;
Type | Description |
ByteString | The qualifier. |