Searched defs:getSuggestions (Results 1 - 6 of 6) sorted by relevance

/lucene-3.6.0/solr/core/src/java/org/apache/solr/spelling/
H A DSpellingResult.java135 public Map<Token, LinkedHashMap<String, Integer>> getSuggestions() { method in class:SpellingResult
H A DSolrSpellChecker.java94 * @see #getSuggestions(Collection, org.apache.lucene.index.IndexReader, int, boolean, boolean)
96 * @deprecated This method will be removed in 4.x in favor of {@link #getSuggestions(org.apache.solr.spelling.SpellingOptions)}
99 public SpellingResult getSuggestions(Collection<Token> tokens, IndexReader reader) throws IOException { method in class:SolrSpellChecker
100 return getSuggestions(tokens, reader, 1, false, false);
106 * @see #getSuggestions(Collection, org.apache.lucene.index.IndexReader, int, boolean, boolean)
108 * @deprecated This method will be removed in 4.x in favor of {@link #getSuggestions(org.apache.solr.spelling.SpellingOptions)}
111 public SpellingResult getSuggestions(Collection<Token> tokens, IndexReader reader, int count) throws IOException { method in class:SolrSpellChecker
112 return getSuggestions(tokens, reader, count, false, false);
119 * @see #getSuggestions(Collection, org.apache.lucene.index.IndexReader, int, boolean, boolean)
121 * @deprecated This method will be removed in 4.x in favor of {@link #getSuggestions(or
124 public SpellingResult getSuggestions(Collection<Token> tokens, IndexReader reader, boolean onlyMorePopular, boolean extendedResults) throws IOException { method in class:SolrSpellChecker
142 public abstract SpellingResult getSuggestions(Collection<Token> tokens, IndexReader reader, int count, method in class:SolrSpellChecker
158 public SpellingResult getSuggestions(SpellingOptions options) throws IOException{ method in class:SolrSpellChecker
[all...]
H A DAbstractLuceneSpellChecker.java154 public SpellingResult getSuggestions(Collection<Token> tokens, IndexReader reader, int count, boolean onlyMorePopular, boolean extendedResults) throws IOException { method in class:AbstractLuceneSpellChecker
155 return getSuggestions(new SpellingOptions(tokens, reader, count, onlyMorePopular, extendedResults, spellChecker.getAccuracy(), null));
159 public SpellingResult getSuggestions(SpellingOptions options) throws IOException { method in class:AbstractLuceneSpellChecker
/lucene-3.6.0/solr/core/src/test/org/apache/solr/handler/component/
H A DDummyCustomParamSpellChecker.java50 public SpellingResult getSuggestions(Collection<Token> tokens, IndexReader reader, int count, boolean onlyMorePopular, boolean extendedResults) throws IOException { method in class:DummyCustomParamSpellChecker
51 return getSuggestions(new SpellingOptions(tokens, reader, count, onlyMorePopular, extendedResults, 0, null));
55 public SpellingResult getSuggestions(SpellingOptions options) throws IOException { method in class:DummyCustomParamSpellChecker
/lucene-3.6.0/solr/core/src/java/org/apache/solr/spelling/suggest/
H A DSuggester.java176 public SpellingResult getSuggestions(Collection<Token> tokens, IndexReader reader, int count, boolean onlyMorePopular, boolean extendedResults) throws IOException { method in class:Suggester
177 return getSuggestions(new SpellingOptions(tokens, reader, count, onlyMorePopular, extendedResults, Float.MIN_VALUE, null));
181 public SpellingResult getSuggestions(SpellingOptions options) throws IOException { method in class:Suggester
182 LOG.debug("getSuggestions: " + options.tokens);
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/client/solrj/response/
H A DSpellCheckResponse.java93 public List<Suggestion> getSuggestions() { method in class:SpellCheckResponse
202 public List<String> getSuggestions() { method in class:SpellCheckResponse.Suggestion

Completed in 45 milliseconds