Class Row
java.lang.Object
com.google.cloud.bigtable.data.v2.models.Row
- All Implemented Interfaces:
Serializable
Default representation of a logical row.
The cells contained within, will be sorted by the native order. Please see RowCell.compareByNative()
for details.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic Comparator<Row>
Returns a comparator that compares two Row objects by comparing the result ofgetKey()
} for each.static Row
Creates a new instance of theRow
.getCells()
Returns a sorted list of cells.Returns a sublist of the cells that belong to the specified family.Returns a sublist of the cells that belong to the specified family and qualifier.Returns a sublist of the cells that belong to the specified family and qualifier.abstract com.google.protobuf.ByteString
getKey()
Returns the row key
-
Constructor Details
-
Row
public Row()
-
-
Method Details
-
compareByKey
Returns a comparator that compares two Row objects by comparing the result ofgetKey()
} for each. -
create
Creates a new instance of theRow
. -
getKey
Returns the row key -
getCells
Returns a sorted list of cells. The cells will be sorted natively.- See Also:
-
getCells
Returns a sublist of the cells that belong to the specified family.- See Also:
-
getCells
Returns a sublist of the cells that belong to the specified family and qualifier.- See Also:
-
getCells
public List<RowCell> getCells(@Nonnull String family, @Nonnull com.google.protobuf.ByteString qualifier) Returns a sublist of the cells that belong to the specified family and qualifier.- See Also:
-