类 DeleteRowRequest
- java.lang.Object
-
- com.baidubce.model.AbstractBceRequest
-
- com.baidubce.services.tablestorage.model.AbstractTableStorageRequest
-
- com.baidubce.services.tablestorage.model.DeleteRowRequest
-
public class DeleteRowRequest extends AbstractTableStorageRequest
Represent the request for DeleteRow operation.
-
-
构造器概要
构造器 构造器 说明 DeleteRowRequest(String tableName, String rowkey)Constructs a delete row request with target table name and rowkey.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 DeleteRowRequestaddCell(String column)Add a cell with column name to this delete row request.StringtoJsonString()Convert this request object to json string.-
从类继承的方法 com.baidubce.services.tablestorage.model.AbstractTableStorageRequest
getTableName, withRequestCredentials
-
从类继承的方法 com.baidubce.model.AbstractBceRequest
getRequestCredentials, setRequestCredentials
-
-
-
-
方法详细资料
-
addCell
public DeleteRowRequest addCell(String column)
Add a cell with column name to this delete row request.- 参数:
column- The column name of cell.- 返回:
- This delete row request object.
-
toJsonString
public String toJsonString()
Convert this request object to json string.- 指定者:
toJsonString在类中AbstractTableStorageRequest- 返回:
- the json string represent the request object.
-
-