Interface ColumnOrBuilder (2.13.0)

public interface ColumnOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

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;

Parameter
NameDescription
indexint
Returns
TypeDescription
Cell

getCellsCount()

public abstract int getCellsCount()

Must not be empty. Sorted in order of decreasing "timestamp_micros".

repeated .google.bigtable.v2.Cell cells = 2;

Returns
TypeDescription
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;

Returns
TypeDescription
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;

Parameter
NameDescription
indexint
Returns
TypeDescription
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;

Returns
TypeDescription
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;

Returns
TypeDescription
ByteString

The qualifier.