Example usage for Java com.mongodb BulkWriteResult fields, constructors, methods, implement or subclass
The text is from its open source code.
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. |
int | getRemovedCount() Returns the number of documents removed by the write operation. |
List | getUpserts() Gets an unmodifiable list of upserted items, or the empty list if there were none. |
boolean | isAcknowledged() Returns true if the write was acknowledged. |