Package | Description |
---|---|
com.google.cloud.bigtable.data.v2.models |
Modifier and Type | Method and Description |
---|---|
static RowCell |
RowCell.create(String family,
ByteString qualifier,
long timestamp,
List<String> labels,
ByteString value)
Creates a new instance of the
RowCell . |
Modifier and Type | Method and 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 order
|
abstract 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,
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.
|
Modifier and Type | Method and Description |
---|---|
static Row |
Row.create(ByteString key,
List<RowCell> cells)
Creates a new instance of the
Row . |
Copyright © 2019 Google LLC. All rights reserved.