클래스 업데이트 결과
- java.lang.Object
-
- io.realm.mongodb.mongo.result.UpdateResult
-
공개 클래스 UpdateResult는 객체를 확장합니다.
업데이트 작업의 결과입니다.
-
-
생성자 요약
생성자 Constructor 설명 UpdateResult(long matchedCount, long modifiedCount, BsonValue upsertedId)
결과를 생성합니다.
-
메서드 요약
모든 메서드 인스턴스 메서드 구체적인 방법 수정자 및 유형 메서드 설명 long
getMatchedCount()
쿼리와 일치하는 문서 수를 반환합니다.long
getModifiedCount()
수정된 문서 수를 반환합니다.BsonValue
getUpsertedId()
교체로 인해 문서가 삽입된 경우 삽입된 문서의 _id를 가져오고, 그렇지 않으면 null을 가져옵니다.
-
-
-
생성자 세부 정보
-
UpdateResult
public UpdateResult(long matchCount, long refinedCount, BsonValue upsertedId)
결과를 생성합니다.- 매개변수:
matchedCount
- 쿼리와 일치하는 문서 수입니다.modifiedCount
- 수정된 문서 수입니다.upsertedId
- 교체로 인해 삽입된 문서가 있는 경우 삽입된 문서의 _id, 그렇지 않으면 null입니다.
-
-