Interface RowOrBuilder (2.17.1)

public interface RowOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getFamilies(int index)

public abstract Family getFamilies(int index)

May be empty, but only if the entire row is empty. The mutual ordering of column families is not specified.

repeated .google.bigtable.v2.Family families = 2;

Parameter
NameDescription
indexint
Returns
TypeDescription
Family

getFamiliesCount()

public abstract int getFamiliesCount()

May be empty, but only if the entire row is empty. The mutual ordering of column families is not specified.

repeated .google.bigtable.v2.Family families = 2;

Returns
TypeDescription
int

getFamiliesList()

public abstract List<Family> getFamiliesList()

May be empty, but only if the entire row is empty. The mutual ordering of column families is not specified.

repeated .google.bigtable.v2.Family families = 2;

Returns
TypeDescription
List<Family>

getFamiliesOrBuilder(int index)

public abstract FamilyOrBuilder getFamiliesOrBuilder(int index)

May be empty, but only if the entire row is empty. The mutual ordering of column families is not specified.

repeated .google.bigtable.v2.Family families = 2;

Parameter
NameDescription
indexint
Returns
TypeDescription
FamilyOrBuilder

getFamiliesOrBuilderList()

public abstract List<? extends FamilyOrBuilder> getFamiliesOrBuilderList()

May be empty, but only if the entire row is empty. The mutual ordering of column families is not specified.

repeated .google.bigtable.v2.Family families = 2;

Returns
TypeDescription
List<? extends com.google.bigtable.v2.FamilyOrBuilder>

getKey()

public abstract ByteString getKey()

The unique key which identifies this row within its table. This is the same key that's used to identify the row in, for example, a MutateRowRequest. May contain any non-empty byte string up to 4KiB in length.

bytes key = 1;

Returns
TypeDescription
ByteString

The key.