com.mongodb.BulkWriteRequestBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongo-java-driver Show documentation
Show all versions of mongo-java-driver Show documentation
The MongoDB Java Driver uber-artifact, containing mongodb-driver, mongodb-driver-core, and bson
/*
* Copyright (c) 2008-2014 MongoDB, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mongodb;
/**
* A builder for a single write request.
*
* @mongodb.server.release 2.6
* @mongodb.driver.manual /reference/command/delete/ Delete
* @mongodb.driver.manual /reference/command/update/ Update
* @mongodb.driver.manual /reference/command/insert/ Insert
* @since 2.12
*/
public class BulkWriteRequestBuilder {
private final BulkWriteOperation bulkWriteOperation;
private final DBObject query;
BulkWriteRequestBuilder(final BulkWriteOperation bulkWriteOperation, final DBObject query) {
this.bulkWriteOperation = bulkWriteOperation;
this.query = query;
}
/**
* Adds a request to remove all documents in the collection that match the query with which this builder was created.
*/
public void remove() {
bulkWriteOperation.addRequest(new RemoveRequest(query, true));
}
/**
* Adds a request to remove one document in the collection that matches the query with which this builder was created.
*/
public void removeOne() {
bulkWriteOperation.addRequest(new RemoveRequest(query, false));
}
/**
* Adds a request to replace one document in the collection that matches the query with which this builder was created.
*
* @param document the replacement document, which must be structured just as a document you would insert. It can not contain any
* update operators.
*/
public void replaceOne(final DBObject document) {
new BulkUpdateRequestBuilder(bulkWriteOperation, query, false).replaceOne(document);
}
/**
* Adds a request to update all documents in the collection that match the query with which this builder was created.
*
* @param update the update criteria
*/
public void update(final DBObject update) {
new BulkUpdateRequestBuilder(bulkWriteOperation, query, false).update(update);
}
/**
* Adds a request to update one document in the collection that matches the query with which this builder was created.
*
* @param update the update criteria
*/
public void updateOne(final DBObject update) {
new BulkUpdateRequestBuilder(bulkWriteOperation, query, false).updateOne(update);
}
/**
* Specifies that the request being built should be an upsert.
*
* @return a new builder that allows only update and replace, since upsert does not apply to remove.
*
* @mongodb.driver.manual reference/method/db.collection.update/#upsert-parameter Upsert
*/
public BulkUpdateRequestBuilder upsert() {
return new BulkUpdateRequestBuilder(bulkWriteOperation, query, true);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy