Docs 菜单
Docs 主页
/ /
Atlas Device SDKs
/ / /

类 MongoCursor

在此页面上

  • io.realm.mongodb.mongo.iterable
  • 方法摘要
  • 继承方法
  • 方法详细信息
  • 关闭
  • hasNext
  • 来年
  • tryNext
java.lang.Object
io.realm.mongodb.mongo.iterable.MongoCursor

实现的接口:

mongoCursor 类从根本上来说是一个 迭代器 为方便起见,包含一个额外的tryNext() 方法。

应用程序应确保游标在所有情况下都处于关闭状态,例如使用 try-with-resources声明。

修饰符和类型
方法和说明
public void
公共布尔值
公共ResultT
next ()

公共ResultT

一种特殊的next()情况,如果下一个文档可用或为 null,则返回该文档。

  • 从类 java.lang.Object 继承的方法 :getClasshashCodeequalsclonetoStringnotifynotifyAllwaitwaitwaitfinalize

public void close ()

public boolean hasNext ()

public ResultT next ()

public ResultT tryNext ()

一种特殊的next()情况,如果下一个文档可用或为 null,则返回该文档。

返回:

包含下一个文档的Task (如果可用)或为 null。

后退

FindIterable