@@ -62,8 +62,8 @@ static <TDocument> ClientNamespacedInsertOneModel insertOne(final MongoNamespace
62
62
63
63
/**
64
64
* Creates a model for updating at most one document in the {@code namespace} matching the {@code filter}.
65
- * This method is functionally equivalent to {@link #updateOne(MongoNamespace, Bson, Bson, ClientUpdateOptions )}
66
- * with the {@linkplain ClientUpdateOptions#clientUpdateOptions () default options}.
65
+ * This method is functionally equivalent to {@link #updateOne(MongoNamespace, Bson, Bson, ClientUpdateOneOptions )}
66
+ * with the {@linkplain ClientUpdateOneOptions#clientUpdateOneOptions () default options}.
67
67
*
68
68
* @param namespace The namespace.
69
69
* @param filter The filter.
@@ -91,7 +91,7 @@ static ClientNamespacedUpdateOneModel updateOne(final MongoNamespace namespace,
91
91
* @see Updates
92
92
*/
93
93
static ClientNamespacedUpdateOneModel updateOne (
94
- final MongoNamespace namespace , final Bson filter , final Bson update , final ClientUpdateOptions options ) {
94
+ final MongoNamespace namespace , final Bson filter , final Bson update , final ClientUpdateOneOptions options ) {
95
95
notNull ("namespace" , namespace );
96
96
notNull ("filter" , filter );
97
97
notNull ("update" , update );
@@ -101,8 +101,8 @@ static ClientNamespacedUpdateOneModel updateOne(
101
101
102
102
/**
103
103
* Creates a model for updating at most one document in the {@code namespace} matching the {@code filter}.
104
- * This method is functionally equivalent to {@link #updateOne(MongoNamespace, Bson, Iterable, ClientUpdateOptions )}
105
- * with the {@linkplain ClientUpdateOptions#clientUpdateOptions () default options}.
104
+ * This method is functionally equivalent to {@link #updateOne(MongoNamespace, Bson, Iterable, ClientUpdateOneOptions )}
105
+ * with the {@linkplain ClientUpdateOneOptions#clientUpdateOneOptions () default options}.
106
106
*
107
107
* @param namespace The namespace.
108
108
* @param filter The filter.
@@ -131,7 +131,7 @@ static ClientNamespacedUpdateOneModel updateOne(
131
131
* @see Aggregates
132
132
*/
133
133
static ClientNamespacedUpdateOneModel updateOne (
134
- final MongoNamespace namespace , final Bson filter , final Iterable <? extends Bson > updatePipeline , final ClientUpdateOptions options ) {
134
+ final MongoNamespace namespace , final Bson filter , final Iterable <? extends Bson > updatePipeline , final ClientUpdateOneOptions options ) {
135
135
notNull ("namespace" , namespace );
136
136
notNull ("filter" , filter );
137
137
notNull ("updatePipeline" , updatePipeline );
@@ -141,8 +141,8 @@ static ClientNamespacedUpdateOneModel updateOne(
141
141
142
142
/**
143
143
* Creates a model for updating all documents in the {@code namespace} matching the {@code filter}.
144
- * This method is functionally equivalent to {@link #updateMany(MongoNamespace, Bson, Bson, ClientUpdateOptions )}
145
- * with the {@linkplain ClientUpdateOptions#clientUpdateOptions () default}.
144
+ * This method is functionally equivalent to {@link #updateMany(MongoNamespace, Bson, Bson, ClientUpdateManyOptions )}
145
+ * with the {@linkplain ClientUpdateManyOptions#clientUpdateManyOptions () default}.
146
146
*
147
147
* @param namespace The namespace.
148
148
* @param filter The filter.
@@ -170,7 +170,7 @@ static ClientNamespacedUpdateManyModel updateMany(final MongoNamespace namespace
170
170
* @see Updates
171
171
*/
172
172
static ClientNamespacedUpdateManyModel updateMany (
173
- final MongoNamespace namespace , final Bson filter , final Bson update , final ClientUpdateOptions options ) {
173
+ final MongoNamespace namespace , final Bson filter , final Bson update , final ClientUpdateManyOptions options ) {
174
174
notNull ("namespace" , namespace );
175
175
notNull ("filter" , filter );
176
176
notNull ("update" , update );
@@ -180,8 +180,8 @@ static ClientNamespacedUpdateManyModel updateMany(
180
180
181
181
/**
182
182
* Creates a model for updating all documents in the {@code namespace} matching the {@code filter}.
183
- * This method is functionally equivalent to {@link #updateMany(MongoNamespace, Bson, Iterable, ClientUpdateOptions )}
184
- * with the {@linkplain ClientUpdateOptions#clientUpdateOptions () default options}.
183
+ * This method is functionally equivalent to {@link #updateMany(MongoNamespace, Bson, Iterable, ClientUpdateManyOptions )}
184
+ * with the {@linkplain ClientUpdateManyOptions#clientUpdateManyOptions () default options}.
185
185
*
186
186
* @param namespace The namespace.
187
187
* @param filter The filter.
@@ -210,7 +210,7 @@ static ClientNamespacedUpdateManyModel updateMany(
210
210
* @see Aggregates
211
211
*/
212
212
static ClientNamespacedUpdateManyModel updateMany (
213
- final MongoNamespace namespace , final Bson filter , final Iterable <? extends Bson > updatePipeline , final ClientUpdateOptions options ) {
213
+ final MongoNamespace namespace , final Bson filter , final Iterable <? extends Bson > updatePipeline , final ClientUpdateManyOptions options ) {
214
214
notNull ("namespace" , namespace );
215
215
notNull ("filter" , filter );
216
216
notNull ("updatePipeline" , updatePipeline );
@@ -220,8 +220,8 @@ static ClientNamespacedUpdateManyModel updateMany(
220
220
221
221
/**
222
222
* Creates a model for replacing at most one document in the {@code namespace} matching the {@code filter}.
223
- * This method is functionally equivalent to {@link #replaceOne(MongoNamespace, Bson, Object, ClientReplaceOptions )}
224
- * with the {@linkplain ClientReplaceOptions#clientReplaceOptions () default options}.
223
+ * This method is functionally equivalent to {@link #replaceOne(MongoNamespace, Bson, Object, ClientReplaceOneOptions )}
224
+ * with the {@linkplain ClientReplaceOneOptions#clientReplaceOneOptions () default options}.
225
225
*
226
226
* @param namespace The namespace.
227
227
* @param filter The filter.
@@ -251,7 +251,7 @@ static <TDocument> ClientNamespacedReplaceOneModel replaceOne(final MongoNamespa
251
251
* @see Filters
252
252
*/
253
253
static <TDocument > ClientNamespacedReplaceOneModel replaceOne (
254
- final MongoNamespace namespace , final Bson filter , final TDocument replacement , final ClientReplaceOptions options ) {
254
+ final MongoNamespace namespace , final Bson filter , final TDocument replacement , final ClientReplaceOneOptions options ) {
255
255
notNull ("namespace" , namespace );
256
256
notNull ("filter" , filter );
257
257
notNull ("replacement" , replacement );
@@ -261,8 +261,8 @@ static <TDocument> ClientNamespacedReplaceOneModel replaceOne(
261
261
262
262
/**
263
263
* Creates a model for deleting at most one document from the {@code namespace} matching the {@code filter}.
264
- * This method is functionally equivalent to {@link #deleteOne(MongoNamespace, Bson, ClientDeleteOptions )}
265
- * with the {@linkplain ClientDeleteOptions#clientDeleteOptions () default options}.
264
+ * This method is functionally equivalent to {@link #deleteOne(MongoNamespace, Bson, ClientDeleteOneOptions )}
265
+ * with the {@linkplain ClientDeleteOneOptions#clientDeleteOneOptions () default options}.
266
266
*
267
267
* @param namespace The namespace.
268
268
* @param filter The filter.
@@ -284,7 +284,7 @@ static ClientNamespacedDeleteOneModel deleteOne(final MongoNamespace namespace,
284
284
* @return The requested {@link ClientNamespacedDeleteOneModel}.
285
285
* @see Filters
286
286
*/
287
- static ClientNamespacedDeleteOneModel deleteOne (final MongoNamespace namespace , final Bson filter , final ClientDeleteOptions options ) {
287
+ static ClientNamespacedDeleteOneModel deleteOne (final MongoNamespace namespace , final Bson filter , final ClientDeleteOneOptions options ) {
288
288
notNull ("namespace" , namespace );
289
289
notNull ("filter" , filter );
290
290
notNull ("options" , options );
@@ -293,8 +293,8 @@ static ClientNamespacedDeleteOneModel deleteOne(final MongoNamespace namespace,
293
293
294
294
/**
295
295
* Creates a model for deleting all documents from the {@code namespace} matching the {@code filter}.
296
- * This method is functionally equivalent to {@link #deleteMany(MongoNamespace, Bson, ClientDeleteOptions )}
297
- * with the {@linkplain ClientDeleteOptions#clientDeleteOptions () default options}.
296
+ * This method is functionally equivalent to {@link #deleteMany(MongoNamespace, Bson, ClientDeleteManyOptions )}
297
+ * with the {@linkplain ClientDeleteManyOptions#clientDeleteManyOptions () default options}.
298
298
*
299
299
* @param namespace The namespace.
300
300
* @param filter The filter.
@@ -316,7 +316,7 @@ static ClientNamespacedDeleteManyModel deleteMany(final MongoNamespace namespace
316
316
* @return The requested {@link ClientNamespacedDeleteManyModel}.
317
317
* @see Filters
318
318
*/
319
- static ClientNamespacedDeleteManyModel deleteMany (final MongoNamespace namespace , final Bson filter , final ClientDeleteOptions options ) {
319
+ static ClientNamespacedDeleteManyModel deleteMany (final MongoNamespace namespace , final Bson filter , final ClientDeleteManyOptions options ) {
320
320
notNull ("namespace" , namespace );
321
321
notNull ("filter" , filter );
322
322
notNull ("options" , options );
0 commit comments