javadocs fixed

pull/6077/head
Nikita Koksharov 6 months ago
parent 9cf120e540
commit 74dc77afa4

@ -211,6 +211,8 @@ public interface RSearch extends RSearchAsync {
/**
* Executes spell checking by defined index name and query.
* Returns a map of misspelled terms and their score.
*
* <pre>
* Map<String, Map<String, Double>> res = s.spellcheck("idx", "Hocke sti", SpellcheckOptions.defaults()
* .includedTerms("name"));
@ -219,7 +221,7 @@ public interface RSearch extends RSearchAsync {
* @param indexName index name
* @param query query
* @param options spell checking options
* @return result
* @return map of misspelled terms and their score
*/
Map<String, Map<String, Double>> spellcheck(String indexName, String query, SpellcheckOptions options);

@ -211,6 +211,8 @@ public interface RSearchAsync {
/**
* Executes spell checking by defined index name and query.
* Returns a map of misspelled terms and their score.
*
* <pre>
* Map<String, Map<String, Double>> res = s.spellcheck("idx", "Hocke sti", SpellcheckOptions.defaults()
* .includedTerms("name"));
@ -219,7 +221,7 @@ public interface RSearchAsync {
* @param indexName index name
* @param query query
* @param options spell checking options
* @return result
* @return map of misspelled terms and their score
*/
RFuture<Map<String, Map<String, Double>>> spellcheckAsync(String indexName, String query, SpellcheckOptions options);

@ -212,6 +212,8 @@ public interface RSearchReactive {
/**
* Executes spell checking by defined index name and query.
* Returns a map of misspelled terms and their score.
*
* <pre>
* Map<String, Map<String, Double>> res = s.spellcheck("idx", "Hocke sti", SpellcheckOptions.defaults()
* .includedTerms("name"));
@ -220,7 +222,7 @@ public interface RSearchReactive {
* @param indexName index name
* @param query query
* @param options spell checking options
* @return result
* @return map of misspelled terms and their score
*/
Mono<Map<String, Map<String, Double>>> spellcheck(String indexName, String query, SpellcheckOptions options);

@ -214,6 +214,8 @@ public interface RSearchRx {
/**
* Executes spell checking by defined index name and query.
* Returns a map of misspelled terms and their score.
*
* <pre>
* Map<String, Map<String, Double>> res = s.spellcheck("idx", "Hocke sti", SpellcheckOptions.defaults()
* .includedTerms("name"));
@ -222,7 +224,7 @@ public interface RSearchRx {
* @param indexName index name
* @param query query
* @param options spell checking options
* @return result
* @return map of misspelled terms and their score
*/
Single<Map<String, Map<String, Double>>> spellcheck(String indexName, String query, SpellcheckOptions options);

Loading…
Cancel
Save