类 TableStorageRow
- java.lang.Object
-
- com.baidubce.services.tablestorage.model.TableStorageRow
-
-
构造器概要
构造器 构造器 说明 TableStorageRow(String rowkey)Constructs a row object with target rowkey.
-
方法概要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 说明 protected static voidcheckRow(TableStorageRow row)Check this table storage row objectList<TableStorageCell>getCells()Get the list of cells of this get object.StringgetRowkey()Get the rowkey of this get object.intgetRowSize()Get the size of this row.StringtoJsonString()Convert this row to json string.
-
-
-
字段详细资料
-
rowkey
protected String rowkey
-
cells
protected List<TableStorageCell> cells
-
rowSize
protected int rowSize
-
-
构造器详细资料
-
TableStorageRow
public TableStorageRow(String rowkey)
Constructs a row object with target rowkey.- 参数:
rowkey- The target rowkey.
-
-
方法详细资料
-
getRowkey
public String getRowkey()
Get the rowkey of this get object.- 返回:
- Return the rowkey of this get object.
-
getCells
public List<TableStorageCell> getCells()
Get the list of cells of this get object.- 返回:
- The list of cells of this get object.
-
getRowSize
public int getRowSize()
Get the size of this row.- 返回:
- Get the size of this row.
-
checkRow
protected static void checkRow(TableStorageRow row)
Check this table storage row object
-
toJsonString
public String toJsonString()
Convert this row to json string.- 返回:
- The json string represent this row.
-
-