Uses of Interface
org.springframework.data.mongodb.core.bulk.Bulk.BulkSpec
Packages that use Bulk.BulkSpec
-
Uses of Bulk.BulkSpec in org.springframework.data.mongodb.core.bulk
Methods in org.springframework.data.mongodb.core.bulk that return Bulk.BulkSpecModifier and TypeMethodDescriptionAdds an insert of the given document.Adds inserts for all given documents.default Bulk.BulkSpecBulk.BulkSpec.remove(CriteriaDefinition criteria) Adds a remove operation (delete all documents matching the criteria).Adds a remove operation (delete all documents matching the filter).default Bulk.BulkSpecBulk.BulkSpec.replaceIfExists(CriteriaDefinition where, Object replacement) Adds a replace-one-if-exists operation (replace only if a document matches the criteria).Bulk.BulkSpec.replaceIfExists(Query filter, Object replacement) Adds a replace-one-if-exists operation (replace only if a document matches the filter).default Bulk.BulkSpecBulk.BulkSpec.replaceOne(CriteriaDefinition where, Object replacement) Adds a replace-one operation (replace at most one document matching the criteria).Bulk.BulkSpec.replaceOne(Query filter, Object replacement) Adds a replace-one operation (replace at most one document matching the filter).default Bulk.BulkSpecBulk.BulkSpec.updateMulti(CriteriaDefinition where, UpdateDefinition update) Adds an update-many operation (update all documents matching the criteria).Bulk.BulkSpec.updateMulti(Query filter, UpdateDefinition update) Adds an update-many operation (update all documents matching the filter).default Bulk.BulkSpecBulk.BulkSpec.updateOne(CriteriaDefinition where, UpdateDefinition update) Adds an update-one operation (update at most one document matching the criteria).Bulk.BulkSpec.updateOne(Query filter, UpdateDefinition update) Adds an update-one operation (update at most one document matching the filter).default Bulk.BulkSpecBulk.BulkSpec.upsert(CriteriaDefinition criteria, UpdateDefinition update) Adds an upsert operation (update if a document matches the criteria, otherwise insert).Bulk.BulkSpec.upsert(Query filter, UpdateDefinition update) Adds an upsert operation (update if a document matches the filter, otherwise insert).Method parameters in org.springframework.data.mongodb.core.bulk with type arguments of type Bulk.BulkSpecModifier and TypeMethodDescription<T> Bulk.BulkBuilderBulk.BulkBuilder.inCollection(Class<T> type, String collectionName, Consumer<Bulk.BulkSpec> builderCustomizer) Adds operations for the collection mapped to the given domain type within a scoped consumer.<T> Bulk.BulkBuilderBulk.BulkBuilder.inCollection(Class<T> type, Consumer<Bulk.BulkSpec> builderCustomizer) Adds operations for the collection mapped to the given domain type within a scoped consumer.Bulk.BulkBuilder.inCollection(String collectionName, Consumer<Bulk.BulkSpec> builderCustomizer) Adds operations for the given collection name within a scoped consumer.