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

类 UpdateResult

在此页面上

  • io.realm.mongodb.mongo.result
  • 构造函数
  • 方法摘要
  • 继承方法
  • 构造函数详细信息
  • 方法详细信息
  • getMatchedCount
  • getModifiedCount
  • getUpsertedId
java.lang.Object
io.realm.mongodb.mongo.result.UpdateResult

更新操作的结果。

构造函数和描述
long matchedCount,
long modifiedCount,
BsonValue upsertedId
)

构造结果。

修饰符和类型
方法和说明
公共长整型

返回与查询匹配的文档数。

公共长整型

返回已修改的文档数。

公共BsonValue

如果替换导致插入文档,则获取插入文档的 _id,否则为 null。

  • 从类 java.lang.Object 继承的方法 :getClass ,hashCode ,equals ,clone ,toString ,notify ,notifyAll ,wait ,wait ,wait ,finalize

public UpdateResult (
long matchedCount,
long modifiedCount,
BsonValue upsertedId
)

构造结果。

参数

  • matchedCount - 查询匹配的文档数量。

  • modifiedCount - 修改的文档数量。

  • upsertedId - 如果替换生成插入文档,则为插入文档的 _id,否则为 null。

public long getMatchedCount ()

返回与查询匹配的文档数。

返回:

匹配的文档数。

public long getModifiedCount ()

返回已修改的文档数。

返回:

修改的文档数量。

public BsonValue getUpsertedId ()

如果替换导致插入文档,则获取插入文档的 _id,否则为 null。

返回:

如果替换导致插入文档,则为插入文档的 _id,否则为 null。

后退

InsertOneResult