public interface RowOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
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;
Name | Description |
index | int |
Type | Description |
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;
Type | Description |
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;
Type | Description |
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;
Name | Description |
index | int |
Type | Description |
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;
Type | Description |
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;
Type | Description |
ByteString | The key. |