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 indexedClientDeleteResult
s.The indexedClientInsertOneResult
s.The indexedClientUpdateResult
s.
-
Method Details
-
getInsertResults
Map<Integer,ClientInsertOneResult> getInsertResults()The indexedClientInsertOneResult
s. The keys are the indexes of the correspondingClientNamespacedWriteModel
s in the client-level bulk write operation.There are no guarantees on mutability or iteration order of the
Map
returned.- Returns:
- The indexed
ClientInsertOneResult
s. - See Also:
-
getUpdateResults
Map<Integer,ClientUpdateResult> getUpdateResults()The indexedClientUpdateResult
s. The keys are the indexes of the correspondingClientNamespacedWriteModel
s in the client-level bulk write operation.There are no guarantees on mutability or iteration order of the
Map
returned.- Returns:
- The indexed
ClientUpdateResult
s. - See Also:
-
getDeleteResults
Map<Integer,ClientDeleteResult> getDeleteResults()The indexedClientDeleteResult
s. The keys are the indexes of the correspondingClientNamespacedWriteModel
s in the client-level bulk write operation.There are no guarantees on mutability or iteration order of the
Map
returned.- Returns:
- The indexed
ClientDeleteResult
s. - See Also:
-