Uses of Interface
org.apache.lucene.search.spell.TermFreqIterator

Packages that use TermFreqIterator
org.apache.lucene.search.spell Suggest alternate spellings for words. 
org.apache.lucene.search.suggest Support for Autocomplete/Autosuggest 
 

Uses of TermFreqIterator in org.apache.lucene.search.spell
 

Classes in org.apache.lucene.search.spell that implement TermFreqIterator
static class TermFreqIterator.TermFreqIteratorWrapper
          Wraps a BytesRefIterator as a TermFreqIterator, with all weights set to 1
 

Uses of TermFreqIterator in org.apache.lucene.search.suggest
 

Classes in org.apache.lucene.search.suggest that implement TermFreqIterator
 class BufferingTermFreqIteratorWrapper
          This wrapper buffers incoming elements.
 class SortedTermFreqIteratorWrapper
          This wrapper buffers incoming elements and makes sure they are sorted based on given comparator.
 

Constructors in org.apache.lucene.search.suggest with parameters of type TermFreqIterator
BufferingTermFreqIteratorWrapper(TermFreqIterator source)
          Creates a new iterator, buffering entries from the specified iterator
SortedTermFreqIteratorWrapper(TermFreqIterator source)
          Creates a new sorted wrapper, using BytesRef.getUTF8SortedAsUnicodeComparator() for sorting.
SortedTermFreqIteratorWrapper(TermFreqIterator source, Comparator<BytesRef> comparator)
          Creates a new sorted wrapper, sorting by BytesRef (ascending) then cost (ascending).
 



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