Uses of Interface
org.apache.lucene.search.suggest.InputIterator

Packages that use InputIterator
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 InputIterator in org.apache.lucene.search.suggest
 

Classes in org.apache.lucene.search.suggest that implement InputIterator
 class BufferedInputIterator
          This wrapper buffers incoming elements.
protected  class DocumentDictionary.DocumentInputIterator
          Implements InputIterator from stored fields.
static class InputIterator.InputIteratorWrapper
          Wraps a BytesRefIterator as a suggester InputIterator, with all weights set to 1 and carries no payload
 class SortedInputIterator
          This wrapper buffers incoming elements and makes sure they are sorted based on given comparator.
 class UnsortedInputIterator
          This wrapper buffers the incoming elements and makes sure they are in random order.
 

Methods in org.apache.lucene.search.suggest that return InputIterator
 InputIterator FileDictionary.getWordsIterator()
           
 

Methods in org.apache.lucene.search.suggest with parameters of type InputIterator
abstract  void Lookup.build(InputIterator tfit)
          Builds up a new internal Lookup representation based on the given InputIterator.
 

Constructors in org.apache.lucene.search.suggest with parameters of type InputIterator
BufferedInputIterator(InputIterator source)
          Creates a new iterator, buffering entries from the specified iterator
SortedInputIterator(InputIterator source)
          Creates a new sorted wrapper, using BytesRef.getUTF8SortedAsUnicodeComparator() for sorting.
SortedInputIterator(InputIterator source, Comparator<BytesRef> comparator)
          Creates a new sorted wrapper, sorting by BytesRef (ascending) then cost (ascending).
UnsortedInputIterator(InputIterator source)
          Creates a new iterator, wrapping the specified iterator and returning elements in a random order.
 

Uses of InputIterator in org.apache.lucene.search.suggest.analyzing
 

Methods in org.apache.lucene.search.suggest.analyzing with parameters of type InputIterator
 void FreeTextSuggester.build(InputIterator iterator)
           
 void AnalyzingSuggester.build(InputIterator iterator)
           
 void AnalyzingInfixSuggester.build(InputIterator iter)
           
 void FreeTextSuggester.build(InputIterator iterator, double ramBufferSizeMB)
          Build the suggest index, using up to the specified amount of temporary RAM while building.
 

Uses of InputIterator in org.apache.lucene.search.suggest.fst
 

Methods in org.apache.lucene.search.suggest.fst with parameters of type InputIterator
 void WFSTCompletionLookup.build(InputIterator iterator)
           
 void FSTCompletionLookup.build(InputIterator tfit)
           
 

Uses of InputIterator in org.apache.lucene.search.suggest.jaspell
 

Methods in org.apache.lucene.search.suggest.jaspell with parameters of type InputIterator
 void JaspellLookup.build(InputIterator tfit)
           
 

Uses of InputIterator in org.apache.lucene.search.suggest.tst
 

Methods in org.apache.lucene.search.suggest.tst with parameters of type InputIterator
 void TSTLookup.build(InputIterator tfit)
           
 



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