@@ -232,7 +232,7 @@ object SearchOperator {
232
232
JSearchOperator .near(origin, pivot, paths.asJava)
233
233
234
234
/**
235
- * Returns a `SearchOperator` that performs a search for documents containing an ordered sequence of terms .
235
+ * Returns a `SearchOperator` that checks whether a field matches a value you specify .
236
236
*
237
237
* @param path The indexed field to be searched.
238
238
* @param value The boolean value to query for.
@@ -243,7 +243,7 @@ object SearchOperator {
243
243
JSearchOperator .equals(path, value)
244
244
245
245
/**
246
- * Returns a `SearchOperator` that performs a search for documents containing an ordered sequence of terms .
246
+ * Returns a `SearchOperator` that checks whether a field matches a value you specify .
247
247
*
248
248
* @param path The indexed field to be searched.
249
249
* @param value The object id value to query for.
@@ -254,7 +254,7 @@ object SearchOperator {
254
254
JSearchOperator .equals(path, value)
255
255
256
256
/**
257
- * Returns a `SearchOperator` that performs a search for documents containing an ordered sequence of terms .
257
+ * Returns a `SearchOperator` that checks whether a field matches a value you specify .
258
258
*
259
259
* @param path The indexed field to be searched.
260
260
* @param value The number value to query for.
@@ -265,7 +265,7 @@ object SearchOperator {
265
265
JSearchOperator .equals(path, value)
266
266
267
267
/**
268
- * Returns a `SearchOperator` that performs a search for documents containing an ordered sequence of terms .
268
+ * Returns a `SearchOperator` that checks whether a field matches a value you specify .
269
269
*
270
270
* @param path The indexed field to be searched.
271
271
* @param value The instant date value to query for.
@@ -276,7 +276,7 @@ object SearchOperator {
276
276
JSearchOperator .equals(path, value)
277
277
278
278
/**
279
- * Returns a `SearchOperator` that performs a search for documents containing an ordered sequence of terms .
279
+ * Returns a `SearchOperator` that checks whether a field matches a value you specify .
280
280
*
281
281
* @param path The indexed field to be searched.
282
282
* @param value The string value to query for.
@@ -287,7 +287,7 @@ object SearchOperator {
287
287
JSearchOperator .equals(path, value)
288
288
289
289
/**
290
- * Returns a `SearchOperator` that performs a search for documents containing an ordered sequence of terms .
290
+ * Returns a `SearchOperator` that checks whether a field matches a value you specify .
291
291
*
292
292
* @param path The indexed field to be searched.
293
293
* @param value The uuid value to query for.
@@ -298,7 +298,7 @@ object SearchOperator {
298
298
JSearchOperator .equals(path, value)
299
299
300
300
/**
301
- * Returns a `SearchOperator` that performs a search for documents containing an ordered sequence of terms .
301
+ * Returns a `SearchOperator` that checks whether a field matches null .
302
302
*
303
303
* @param path The indexed field to be searched.
304
304
* @param value The uuid value to query for.
@@ -309,6 +309,8 @@ object SearchOperator {
309
309
JSearchOperator .equalsNull(path)
310
310
311
311
/**
312
+ * Returns a {@link SearchOperator} that performs a search for documents containing an ordered sequence of terms.
313
+ *
312
314
* @param path The field to be searched.
313
315
* @param query The string to search for.
314
316
* @return The requested `SearchOperator`.
@@ -317,6 +319,7 @@ object SearchOperator {
317
319
def phrase (path : SearchPath , query : String ): PhraseSearchOperator = JSearchOperator .phrase(path, query)
318
320
319
321
/**
322
+ * Returns a {@link SearchOperator} that performs a search for documents containing an ordered sequence of terms.
320
323
* @param paths The non-empty fields to be searched.
321
324
* @param queries The non-empty strings to search for.
322
325
* @return The requested `SearchOperator`.
0 commit comments