类 TableStorageResult
- java.lang.Object
-
- com.baidubce.services.tablestorage.model.TableStorageResult
-
public class TableStorageResult extends Object
Single row result of a GetRow, BatchGetRow or Scan operation.
-
-
构造器概要
构造器 构造器 说明 TableStorageResult(String rowkey, List<TableStorageCell> cells)Constructs a result object with rowkey and cells.
-
-
-
构造器详细资料
-
TableStorageResult
public TableStorageResult(String rowkey, List<TableStorageCell> cells)
Constructs a result object with rowkey and cells.- 参数:
rowkey- The rowkey set to this object.cells-
-
-
方法详细资料
-
getRowkey
public String getRowkey()
Get the rowkey of this object.- 返回:
- The rowkey of this object.
-
getCells
public List<TableStorageCell> getCells()
The list of cells of this object.- 返回:
- The list of cells of this object.
-
-