@@ -107,7 +107,7 @@ public static Update fromDocument(Document object, String... exclude) {
107
107
}
108
108
109
109
/**
110
- * Update using the {@literal $set} update modifier
110
+ * Update using the {@literal $set} update modifier.
111
111
*
112
112
* @param key the field name.
113
113
* @param value can be {@literal null}. In this case the property remains in the db with a {@literal null} value. To
@@ -122,7 +122,7 @@ public Update set(String key, @Nullable Object value) {
122
122
}
123
123
124
124
/**
125
- * Update using the {@literal $setOnInsert} update modifier
125
+ * Update using the {@literal $setOnInsert} update modifier.
126
126
*
127
127
* @param key the field name.
128
128
* @param value can be {@literal null}.
@@ -137,7 +137,7 @@ public Update setOnInsert(String key, @Nullable Object value) {
137
137
}
138
138
139
139
/**
140
- * Update using the {@literal $unset} update modifier
140
+ * Update using the {@literal $unset} update modifier.
141
141
*
142
142
* @param key the field name.
143
143
* @return this.
@@ -191,9 +191,8 @@ public Update push(String key, @Nullable Object value) {
191
191
}
192
192
193
193
/**
194
- * Update using {@code $push} modifier. <br/>
195
- * Allows creation of {@code $push} command for single or multiple (using {@code $each}) values as well as using
196
- * {@code $position}.
194
+ * Update using {@code $push} modifier. Allows creation of {@code $push} command for single or multiple (using
195
+ * {@code $each}) values as well as using {@code $position}.
197
196
*
198
197
* @param key the field name.
199
198
* @return {@link PushOperatorBuilder} for given key
@@ -214,8 +213,8 @@ public PushOperatorBuilder push(String key) {
214
213
}
215
214
216
215
/**
217
- * Update using {@code $addToSet} modifier. <br/>
218
- * Allows creation of {@code $push} command for single or multiple (using {@code $each}) values
216
+ * Update using {@code $addToSet} modifier. Allows creation of {@code $push} command for single or multiple (using
217
+ * {@code $each}) values
219
218
*
220
219
* @param key the field name.
221
220
* @return new instance of {@link AddToSetBuilder}.
@@ -227,7 +226,7 @@ public AddToSetBuilder addToSet(String key) {
227
226
}
228
227
229
228
/**
230
- * Update using the {@literal $addToSet} update modifier
229
+ * Update using the {@literal $addToSet} update modifier.
231
230
*
232
231
* @param key the field name.
233
232
* @param value can be {@literal null}.
@@ -242,7 +241,7 @@ public Update addToSet(String key, @Nullable Object value) {
242
241
}
243
242
244
243
/**
245
- * Update using the {@literal $pop} update modifier
244
+ * Update using the {@literal $pop} update modifier.
246
245
*
247
246
* @param key the field name.
248
247
* @param pos must not be {@literal null}.
@@ -256,7 +255,7 @@ public Update pop(String key, Position pos) {
256
255
}
257
256
258
257
/**
259
- * Update using the {@literal $pull} update modifier
258
+ * Update using the {@literal $pull} update modifier.
260
259
*
261
260
* @param key the field name.
262
261
* @param value can be {@literal null}.
@@ -270,7 +269,7 @@ public Update pull(String key, @Nullable Object value) {
270
269
}
271
270
272
271
/**
273
- * Update using the {@literal $pullAll} update modifier
272
+ * Update using the {@literal $pullAll} update modifier.
274
273
*
275
274
* @param key the field name.
276
275
* @param values must not be {@literal null}.
@@ -285,7 +284,7 @@ public Update pullAll(String key, Object[] values) {
285
284
}
286
285
287
286
/**
288
- * Update using the {@literal $rename} update modifier
287
+ * Update using the {@literal $rename} update modifier.
289
288
*
290
289
* @param oldName must not be {@literal null}.
291
290
* @param newName must not be {@literal null}.
@@ -398,8 +397,8 @@ public BitwiseOperatorBuilder bitwise(String key) {
398
397
399
398
/**
400
399
* Prevents a write operation that affects <strong>multiple</strong> documents from yielding to other reads or writes
401
- * once the first document is written. <br />
402
- * Use with {@link org.springframework.data.mongodb.core.MongoOperations#updateMulti(Query, UpdateDefinition, Class)}.
400
+ * once the first document is written. Use with
401
+ * {@link org.springframework.data.mongodb.core.MongoOperations#updateMulti(Query, UpdateDefinition, Class)}.
403
402
*
404
403
* @return this.
405
404
* @since 2.0
0 commit comments