@@ -46,7 +46,7 @@ object Updates {
46
46
* @param value the value
47
47
* @tparam TItem the value type
48
48
* @return the update
49
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/set/ \$set ]]
49
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/set/ \$set ]]
50
50
*/
51
51
def set [TItem ](fieldName : String , value : TItem ): Bson = JUpdates .set(fieldName, value)
52
52
@@ -55,7 +55,7 @@ object Updates {
55
55
*
56
56
* @param fieldName the non-null field name
57
57
* @return the update
58
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/unset/ \$unset ]]
58
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/unset/ \$unset ]]
59
59
*/
60
60
def unset (fieldName : String ): Bson = JUpdates .unset(fieldName)
61
61
@@ -67,7 +67,7 @@ object Updates {
67
67
* @param value the value
68
68
* @tparam TItem the value type
69
69
* @return the update
70
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/setOnInsert/ \$setOnInsert ]]
70
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/setOnInsert/ \$setOnInsert ]]
71
71
* @see UpdateOptions#upsert(boolean)
72
72
*/
73
73
def setOnInsert [TItem ](fieldName : String , value : TItem ): Bson = JUpdates .setOnInsert(fieldName, value)
@@ -78,7 +78,7 @@ object Updates {
78
78
* @param fieldName the non-null field name
79
79
* @param newFieldName the non-null new field name
80
80
* @return the update
81
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/rename/ \$rename ]]
81
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/rename/ \$rename ]]
82
82
*/
83
83
def rename (fieldName : String , newFieldName : String ): Bson = JUpdates .rename(fieldName, newFieldName)
84
84
@@ -88,7 +88,7 @@ object Updates {
88
88
* @param fieldName the non-null field name
89
89
* @param number the value
90
90
* @return the update
91
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/inc/ \$inc ]]
91
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/inc/ \$inc ]]
92
92
*/
93
93
def inc (fieldName : String , number : Number ): Bson = JUpdates .inc(fieldName, number)
94
94
@@ -98,7 +98,7 @@ object Updates {
98
98
* @param fieldName the non-null field name
99
99
* @param number the non-null number
100
100
* @return the update
101
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/mul/ \$mul ]]
101
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/mul/ \$mul ]]
102
102
*/
103
103
def mul (fieldName : String , number : Number ): Bson = JUpdates .mul(fieldName, number)
104
104
@@ -110,7 +110,7 @@ object Updates {
110
110
* @param value the value
111
111
* @tparam TItem the value type
112
112
* @return the update
113
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/min/ \$min ]]
113
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/min/ \$min ]]
114
114
*/
115
115
def min [TItem ](fieldName : String , value : TItem ): Bson = JUpdates .min(fieldName, value)
116
116
@@ -122,7 +122,7 @@ object Updates {
122
122
* @param value the value
123
123
* @tparam TItem the value type
124
124
* @return the update
125
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/min/ \$min ]]
125
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/min/ \$min ]]
126
126
*/
127
127
def max [TItem ](fieldName : String , value : TItem ): Bson = JUpdates .max(fieldName, value)
128
128
@@ -131,8 +131,8 @@ object Updates {
131
131
*
132
132
* @param fieldName the non-null field name
133
133
* @return the update
134
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/currentDate/ \$currentDate ]]
135
- * @see [[http://docs .mongodb.com/manual/reference/bson-types/#date Date ]]
134
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/currentDate/ \$currentDate ]]
135
+ * @see [[http://www .mongodb.com/manual/reference/bson-types/#date Date ]]
136
136
*/
137
137
def currentDate (fieldName : String ): Bson = JUpdates .currentDate(fieldName)
138
138
@@ -141,8 +141,8 @@ object Updates {
141
141
*
142
142
* @param fieldName the non-null field name
143
143
* @return the update
144
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/currentDate/ \$currentDate ]]
145
- * @see [[http://docs .mongodb.com/manual/reference/bson-types/#document-bson-type-timestamp Timestamp ]]
144
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/currentDate/ \$currentDate ]]
145
+ * @see [[http://www .mongodb.com/manual/reference/bson-types/#document-bson-type-timestamp Timestamp ]]
146
146
*/
147
147
def currentTimestamp (fieldName : String ): Bson = JUpdates .currentTimestamp(fieldName)
148
148
@@ -154,7 +154,7 @@ object Updates {
154
154
* @param value the value
155
155
* @tparam TItem the value type
156
156
* @return the update
157
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/addToSet/ \$addToSet ]]
157
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/addToSet/ \$addToSet ]]
158
158
*/
159
159
def addToSet [TItem ](fieldName : String , value : TItem ): Bson = JUpdates .addToSet(fieldName, value)
160
160
@@ -166,7 +166,7 @@ object Updates {
166
166
* @param values the values
167
167
* @tparam TItem the value type
168
168
* @return the update
169
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/addToSet/ \$addToSet ]]
169
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/addToSet/ \$addToSet ]]
170
170
*/
171
171
def addEachToSet [TItem ](fieldName : String , values : TItem * ): Bson = JUpdates .addEachToSet(fieldName, values.asJava)
172
172
@@ -177,7 +177,7 @@ object Updates {
177
177
* @param value the value
178
178
* @tparam TItem the value type
179
179
* @return the update
180
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/push/ \$push ]]
180
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/push/ \$push ]]
181
181
*/
182
182
def push [TItem ](fieldName : String , value : TItem ): Bson = JUpdates .push(fieldName, value)
183
183
@@ -188,7 +188,7 @@ object Updates {
188
188
* @param values the values
189
189
* @tparam TItem the value type
190
190
* @return the update
191
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/push/ \$push ]]
191
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/push/ \$push ]]
192
192
*/
193
193
def pushEach [TItem ](fieldName : String , values : TItem * ): Bson = JUpdates .pushEach(fieldName, values.asJava)
194
194
@@ -201,7 +201,7 @@ object Updates {
201
201
* @param options the non-null push options
202
202
* @tparam TItem the value type
203
203
* @return the update
204
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/push/ \$push ]]
204
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/push/ \$push ]]
205
205
*/
206
206
def pushEach [TItem ](fieldName : String , options : JPushOptions , values : TItem * ): Bson =
207
207
JUpdates .pushEach(fieldName, values.asJava, options)
@@ -213,7 +213,7 @@ object Updates {
213
213
* @param value the value
214
214
* @tparam TItem the value type
215
215
* @return the update
216
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/pull/ \$pull ]]
216
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/pull/ \$pull ]]
217
217
*/
218
218
def pull [TItem ](fieldName : String , value : TItem ): Bson = JUpdates .pull(fieldName, value)
219
219
@@ -222,7 +222,7 @@ object Updates {
222
222
*
223
223
* @param filter the query filter
224
224
* @return the update
225
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/pull/ \$pull ]]
225
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/pull/ \$pull ]]
226
226
*/
227
227
def pullByFilter (filter : Bson ): Bson = JUpdates .pullByFilter(filter)
228
228
@@ -233,7 +233,7 @@ object Updates {
233
233
* @param values the values
234
234
* @tparam TItem the value type
235
235
* @return the update
236
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/pull/ \$pull ]]
236
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/pull/ \$pull ]]
237
237
*/
238
238
def pullAll [TItem ](fieldName : String , values : TItem * ): Bson = JUpdates .pullAll(fieldName, values.asJava)
239
239
@@ -242,7 +242,7 @@ object Updates {
242
242
*
243
243
* @param fieldName the non-null field name
244
244
* @return the update
245
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/pop/ \$pop ]]
245
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/pop/ \$pop ]]
246
246
*/
247
247
def popFirst (fieldName : String ): Bson = JUpdates .popFirst(fieldName)
248
248
@@ -251,7 +251,7 @@ object Updates {
251
251
*
252
252
* @param fieldName the non-null field name
253
253
* @return the update
254
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/pop/ \$pop ]]
254
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/pop/ \$pop ]]
255
255
*/
256
256
def popLast (fieldName : String ): Bson = JUpdates .popLast(fieldName)
257
257
@@ -271,7 +271,7 @@ object Updates {
271
271
* @param fieldName the field name
272
272
* @param value the value
273
273
* @return the update
274
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/bit/ \$bit ]]
274
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/bit/ \$bit ]]
275
275
*/
276
276
def bitwiseAnd (fieldName : String , value : Long ): Bson = JUpdates .bitwiseAnd(fieldName, value)
277
277
@@ -282,7 +282,7 @@ object Updates {
282
282
* @param fieldName the field name
283
283
* @param value the value
284
284
* @return the update
285
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/bit/ \$bit ]]
285
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/bit/ \$bit ]]
286
286
*/
287
287
def bitwiseOr (fieldName : String , value : Int ): Bson = JUpdates .bitwiseOr(fieldName, value)
288
288
@@ -292,7 +292,7 @@ object Updates {
292
292
* @param fieldName the field name
293
293
* @param value the value
294
294
* @return the update
295
- * @see [[http://docs .mongodb.com/manual/reference/operator/update/bit/ \$bit ]]
295
+ * @see [[http://www .mongodb.com/manual/reference/operator/update/bit/ \$bit ]]
296
296
*/
297
297
def bitwiseOr (fieldName : String , value : Long ): Bson = JUpdates .bitwiseOr(fieldName, value)
298
298
0 commit comments