com.google.cloud.bigtable.grpc.scanner
Class FlatRow
- java.lang.Object
-
- com.google.cloud.bigtable.grpc.scanner.FlatRow
-
- All Implemented Interfaces:
- Serializable
public class FlatRow extends Object implements Serializable
This class stores represents a single row. It's a flattened version of the data of aRow
- Version:
- $Id: $Id
- Author:
- tyagihas
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class and Description static class
FlatRow.Builder
static class
FlatRow.Cell
-
Constructor Summary
Constructors Constructor and Description FlatRow(ByteString rowKey, ImmutableList<FlatRow.Cell> cells)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method and Description boolean
equals(Object obj)
List<FlatRow.Cell>
getCells()
ByteString
getRowKey()
static FlatRow.Builder
newBuilder()
String
toString()
-
-
-
Constructor Detail
-
FlatRow
public FlatRow(ByteString rowKey, ImmutableList<FlatRow.Cell> cells)
-
-
Method Detail
-
newBuilder
public static FlatRow.Builder newBuilder()
-
getRowKey
public ByteString getRowKey()
-
getCells
public List<FlatRow.Cell> getCells()
-
-