Uses of Interface
org.apache.lucene.search.spell.TermFreqIterator
-
Packages that use TermFreqIterator Package Description org.apache.lucene.search.spell Suggest alternate spellings for words.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 TermFreqIterator in org.apache.lucene.search.spell
Classes in org.apache.lucene.search.spell that implement TermFreqIterator Modifier and Type Class Description static classTermFreqIterator.TermFreqIteratorWrapperWraps a BytesRefIterator as a TermFreqIterator, with all weights set to1 -
Uses of TermFreqIterator in org.apache.lucene.search.suggest
Classes in org.apache.lucene.search.suggest that implement TermFreqIterator Modifier and Type Class Description classBufferingTermFreqIteratorWrapperThis wrapper buffers incoming elements.classSortedTermFreqIteratorWrapperThis wrapper buffers incoming elements and makes sure they are sorted based on given comparator.classUnsortedTermFreqIteratorWrapperThis wrapper buffers the incoming elements and makes sure they are in random order.Methods in org.apache.lucene.search.suggest that return TermFreqIterator Modifier and Type Method Description TermFreqIteratorFileDictionary. getWordsIterator()Methods in org.apache.lucene.search.suggest with parameters of type TermFreqIterator Modifier and Type Method Description abstract voidLookup. build(TermFreqIterator tfit)Builds up a new internalLookuprepresentation based on the givenTermFreqIterator.Constructors in org.apache.lucene.search.suggest with parameters of type TermFreqIterator Constructor Description BufferingTermFreqIteratorWrapper(TermFreqIterator source)SortedTermFreqIteratorWrapper(TermFreqIterator source, Comparator<org.apache.lucene.util.BytesRef> comparator)SortedTermFreqIteratorWrapper(TermFreqIterator source, Comparator<org.apache.lucene.util.BytesRef> comparator, boolean compareRawBytes)UnsortedTermFreqIteratorWrapper(TermFreqIterator source) -
Uses of TermFreqIterator in org.apache.lucene.search.suggest.fst
Methods in org.apache.lucene.search.suggest.fst with parameters of type TermFreqIterator Modifier and Type Method Description voidFSTCompletionLookup. build(TermFreqIterator tfit)Builds up a new internalLookuprepresentation based on the givenTermFreqIterator.voidFSTLookup. build(TermFreqIterator tfit)Deprecated.voidWFSTCompletionLookup. build(TermFreqIterator iterator) -
Uses of TermFreqIterator in org.apache.lucene.search.suggest.jaspell
Methods in org.apache.lucene.search.suggest.jaspell with parameters of type TermFreqIterator Modifier and Type Method Description voidJaspellLookup. build(TermFreqIterator tfit) -
Uses of TermFreqIterator in org.apache.lucene.search.suggest.tst
Methods in org.apache.lucene.search.suggest.tst with parameters of type TermFreqIterator Modifier and Type Method Description voidTSTLookup. build(TermFreqIterator tfit)
-