类 ScanResponse
- java.lang.Object
-
- com.baidubce.model.AbstractBceResponse
-
- com.baidubce.services.tablestorage.model.ScanResponse
-
- 所有已实现的接口:
Serializable
public class ScanResponse extends AbstractBceResponse
Represents the output of a Scan operation.- 另请参阅:
- 序列化表格
-
-
字段概要
-
从类继承的字段 com.baidubce.model.AbstractBceResponse
metadata
-
-
构造器概要
构造器 构造器 说明 ScanResponse()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 StringgetNextStartKey()Get the next start key of this scan response, which can be use to continue scan.List<TableStorageResult>getResults()Get list of results of this scan response.voidsetNextStartKey(String nextStartKey)Set the next start key of this scan response.voidsetResults(List<TableStorageResult> results)Set the results of this scan response.StringtoString()Convert this object to string.-
从类继承的方法 com.baidubce.model.AbstractBceResponse
getMetadata
-
-
-
-
方法详细资料
-
getNextStartKey
public String getNextStartKey()
Get the next start key of this scan response, which can be use to continue scan.- 返回:
- The next start key of this scan response.
-
setNextStartKey
public void setNextStartKey(String nextStartKey)
Set the next start key of this scan response.- 参数:
nextStartKey- The next start rowkey set to this scan response.
-
setResults
public void setResults(List<TableStorageResult> results)
Set the results of this scan response.- 参数:
results- The result set to this scan response.
-
getResults
public List<TableStorageResult> getResults()
Get list of results of this scan response.- 返回:
- The list of results of this scan response.
-
-