Example usage for Java com.mongodb.bulk BulkWriteResult fields, constructors, methods, implement or subclass
The text is from its open source code.
int | getDeletedCount() Returns the number of documents deleted by the write operation. |
int | getInsertedCount() Returns the number of documents inserted by the write operation. |
int | getMatchedCount() Returns the number of documents matched by updates or replacements in the write operation. |
int | getModifiedCount() Returns the number of documents modified by the write operation. |
List | getUpserts() Gets an unmodifiable list of upserted items, or the empty list if there were none. |
boolean | isModifiedCountAvailable() Returns true if the server was able to provide a count of modified documents. |
boolean | wasAcknowledged() Returns true if the write was acknowledged. |