类 UpdateResult
在此页面上
Atlas Device SDK 已弃用。 有关详细信息,请参阅弃用页面。
io.realm.mongodb.mongo.result
io.realm.mongodb.mongo.result.UpdateResult
更新操作的结果。
构造函数
构造函数和描述 |
---|
构造结果。 |
方法摘要
修饰符和类型 | 方法和说明 |
---|---|
公共长整型 | 返回与查询匹配的文档数。 |
公共长整型 | 返回已修改的文档数。 |
公共BsonValue | 如果替换导致插入文档,则获取插入文档的 _id,否则为 null。 |
继承方法
从类 java.lang.Object 继承的方法 :
getClass
,hashCode
,equals
,clone
,toString
,notify
,notifyAll
,wait
,wait
,wait
,finalize
构造函数详细信息
构造结果。 参数
|
方法详细信息
getMatchedCount
public long getMatchedCount () |
---|
返回与查询匹配的文档数。 返回: 匹配的文档数。 |
getModifiedCount
public long getModifiedCount () |
---|
返回已修改的文档数。 返回: 修改的文档数量。 |
getUpsertedId
public BsonValue getUpsertedId () |
---|
如果替换导致插入文档,则获取插入文档的 _id,否则为 null。 返回: 如果替换导致插入文档,则为插入文档的 _id,否则为 null。 |