com.microsoft.azure.sdk.iot.provisioning.service.Query.next()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(319)

本文整理了Java中com.microsoft.azure.sdk.iot.provisioning.service.Query.next方法的一些代码示例,展示了Query.next的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.next方法的具体详情如下:
包路径:com.microsoft.azure.sdk.iot.provisioning.service.Query
类名称:Query
方法名:next

Query.next介绍

[英]Return the next page of result for the query.
[中]返回查询结果的下一页。

代码示例

代码示例来源:origin: Azure/azure-iot-sdk-java

  1. /**
  2. * Return the next page of result for the query using a new continuationToken.
  3. *
  4. * @param continuationToken the {@code String} with the previous continuationToken. It cannot be {@code null} or empty.
  5. * @return A {@link QueryResult} with the next page of items for the query.
  6. * @throws NoSuchElementException if the query does no have more pages to return.
  7. */
  8. public QueryResult next(String continuationToken)
  9. {
  10. /* SRS_QUERY_21_018: [The next shall throw NoSuchElementException if the provided continuationToken is null or empty.] */
  11. if(Tools.isNullOrEmpty(continuationToken))
  12. {
  13. throw new NoSuchElementException("There is no Continuation Token to get pending elements,");
  14. }
  15. /* SRS_QUERY_21_019: [The next shall store the provided continuationToken.] */
  16. this.continuationToken = continuationToken;
  17. /* SRS_QUERY_21_020: [The next shall return the next page of results by calling the next().] */
  18. return next();
  19. }

代码示例来源:origin: Azure/azure-iot-sdk-java

  1. QueryResult queryResult = query.next();
  2. System.out.println(queryResult);

代码示例来源:origin: Azure/azure-iot-sdk-java

  1. QueryResult queryResult = query.next();
  2. System.out.println(queryResult);

代码示例来源:origin: Azure/azure-iot-sdk-java

  1. QueryResult queryResult = query.next();
  2. System.out.println(queryResult);

相关文章