Package com.mongodb.client.model.bulk
Interface ClientBulkWriteResult.VerboseResults
- Enclosing interface:
- ClientBulkWriteResult
The verbose results of individual operations.
- Since:
- 5.3
-
Method Summary
Modifier and TypeMethodDescriptionThe indexedClientDeleteResults.The indexedClientInsertOneResults.The indexedClientUpdateResults.
-
Method Details
-
getInsertResults
Map<Integer,ClientInsertOneResult> getInsertResults()The indexedClientInsertOneResults. The keys are the indexes of the correspondingClientNamespacedWriteModels in the client-level bulk write operation.There are no guarantees on mutability or iteration order of the
Mapreturned.- Returns:
- The indexed
ClientInsertOneResults. - See Also:
-
getUpdateResults
Map<Integer,ClientUpdateResult> getUpdateResults()The indexedClientUpdateResults. The keys are the indexes of the correspondingClientNamespacedWriteModels in the client-level bulk write operation.There are no guarantees on mutability or iteration order of the
Mapreturned.- Returns:
- The indexed
ClientUpdateResults. - See Also:
-
getDeleteResults
Map<Integer,ClientDeleteResult> getDeleteResults()The indexedClientDeleteResults. The keys are the indexes of the correspondingClientNamespacedWriteModels in the client-level bulk write operation.There are no guarantees on mutability or iteration order of the
Mapreturned.- Returns:
- The indexed
ClientDeleteResults. - See Also:
-