Uses of Class
org.apache.lucene.search.suggest.Lookup.LookupResult

Packages that use Lookup.LookupResult
org.apache.lucene.search.suggest Support for Autocomplete/Autosuggest 
org.apache.lucene.search.suggest.analyzing Analyzer based autosuggest. 
org.apache.lucene.search.suggest.fst Finite-state based autosuggest. 
org.apache.lucene.search.suggest.jaspell JaSpell-based autosuggest. 
org.apache.lucene.search.suggest.tst Ternary Search Tree based autosuggest. 
 

Uses of Lookup.LookupResult in org.apache.lucene.search.suggest
 

Methods in org.apache.lucene.search.suggest that return Lookup.LookupResult
 Lookup.LookupResult[] Lookup.LookupPriorityQueue.getResults()
          Returns the top N results in descending order.
 

Methods in org.apache.lucene.search.suggest that return types with arguments of type Lookup.LookupResult
abstract  List<Lookup.LookupResult> Lookup.lookup(CharSequence key, boolean onlyMorePopular, int num)
          Look up a key and return possible completion for this key.
 

Methods in org.apache.lucene.search.suggest with parameters of type Lookup.LookupResult
 int Lookup.LookupResult.compareTo(Lookup.LookupResult o)
          Compare alphabetically.
protected  boolean Lookup.LookupPriorityQueue.lessThan(Lookup.LookupResult a, Lookup.LookupResult b)
           
 

Uses of Lookup.LookupResult in org.apache.lucene.search.suggest.analyzing
 

Methods in org.apache.lucene.search.suggest.analyzing that return types with arguments of type Lookup.LookupResult
protected  List<Lookup.LookupResult> BlendedInfixSuggester.createResults(TopDocs hits, int num, CharSequence key, boolean doHighlight, Set<String> matchedTokens, String prefixToken)
           
protected  List<Lookup.LookupResult> AnalyzingInfixSuggester.createResults(TopDocs hits, int num, CharSequence charSequence, boolean doHighlight, Set<String> matchedTokens, String prefixToken)
          Create the results based on the search hits.
 List<Lookup.LookupResult> AnalyzingSuggester.lookup(CharSequence key, boolean onlyMorePopular, int num)
           
 List<Lookup.LookupResult> BlendedInfixSuggester.lookup(CharSequence key, boolean onlyMorePopular, int num)
           
 List<Lookup.LookupResult> AnalyzingInfixSuggester.lookup(CharSequence key, boolean onlyMorePopular, int num)
           
 List<Lookup.LookupResult> FreeTextSuggester.lookup(CharSequence key, boolean onlyMorePopular, int num)
           
 List<Lookup.LookupResult> FreeTextSuggester.lookup(CharSequence key, int num)
          Retrieve suggestions.
 List<Lookup.LookupResult> BlendedInfixSuggester.lookup(CharSequence key, int num, boolean allTermsRequired, boolean doHighlight)
           
 List<Lookup.LookupResult> AnalyzingInfixSuggester.lookup(CharSequence key, int num, boolean allTermsRequired, boolean doHighlight)
          Retrieve suggestions, specifying whether all terms must match (allTermsRequired) and whether the hits should be highlighted (doHighlight).
 

Uses of Lookup.LookupResult in org.apache.lucene.search.suggest.fst
 

Methods in org.apache.lucene.search.suggest.fst that return types with arguments of type Lookup.LookupResult
 List<Lookup.LookupResult> FSTCompletionLookup.lookup(CharSequence key, boolean higherWeightsFirst, int num)
           
 List<Lookup.LookupResult> WFSTCompletionLookup.lookup(CharSequence key, boolean onlyMorePopular, int num)
           
 

Uses of Lookup.LookupResult in org.apache.lucene.search.suggest.jaspell
 

Methods in org.apache.lucene.search.suggest.jaspell that return types with arguments of type Lookup.LookupResult
 List<Lookup.LookupResult> JaspellLookup.lookup(CharSequence key, boolean onlyMorePopular, int num)
           
 

Uses of Lookup.LookupResult in org.apache.lucene.search.suggest.tst
 

Methods in org.apache.lucene.search.suggest.tst that return types with arguments of type Lookup.LookupResult
 List<Lookup.LookupResult> TSTLookup.lookup(CharSequence key, boolean onlyMorePopular, int num)
           
 



Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.