Uses of Class
com.google.cloud.bigtable.data.v2.models.RowCell
-
Packages that use RowCell Package Description com.google.cloud.bigtable.data.v2.models -
-
Uses of RowCell in com.google.cloud.bigtable.data.v2.models
Methods in com.google.cloud.bigtable.data.v2.models that return RowCell Modifier and Type Method Description static RowCell
RowCell. create(String family, com.google.protobuf.ByteString qualifier, long timestamp, List<String> labels, com.google.protobuf.ByteString value)
Creates a new instance of theRowCell
.Methods in com.google.cloud.bigtable.data.v2.models that return types with arguments of type RowCell Modifier and Type Method Description static Comparator<RowCell>
RowCell. compareByNative()
A comparator that compares the cells by Bigtable native ordering: Family lexicographically ascending Qualifier lexicographically ascending Timestamp in reverse chronological orderabstract List<RowCell>
Row. getCells()
Returns a sorted list of cells.List<RowCell>
Row. getCells(String family)
Returns a sublist of the cells that belong to the specified family.List<RowCell>
Row. getCells(String family, com.google.protobuf.ByteString qualifier)
Returns a sublist of the cells that belong to the specified family and qualifier.List<RowCell>
Row. getCells(String family, String qualifier)
Returns a sublist of the cells that belong to the specified family and qualifier.Method parameters in com.google.cloud.bigtable.data.v2.models with type arguments of type RowCell Modifier and Type Method Description static Row
Row. create(com.google.protobuf.ByteString key, List<RowCell> cells)
Creates a new instance of theRow
.
-