Uses of Class
org.apache.lucene.search.suggest.Lookup.LookupResult
-
Packages that use Lookup.LookupResult Package Description org.apache.lucene.search.suggest Support for Autocomplete/Autosuggestorg.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 Modifier and Type Method Description 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 Modifier and Type Method Description 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 Modifier and Type Method Description 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.fst
Methods in org.apache.lucene.search.suggest.fst that return types with arguments of type Lookup.LookupResult Modifier and Type Method Description List<Lookup.LookupResult>
FSTCompletionLookup. lookup(CharSequence key, boolean higherWeightsFirst, int num)
List<Lookup.LookupResult>
FSTLookup. lookup(CharSequence key, boolean onlyMorePopular, int num)
Deprecated.Lookup autocomplete suggestions tokey
.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 Modifier and Type Method Description 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 Modifier and Type Method Description List<Lookup.LookupResult>
TSTLookup. lookup(CharSequence key, boolean onlyMorePopular, int num)
-