Uses of Interface
org.apache.lucene.util.BytesRefIterator
-
Packages that use BytesRefIterator 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.util Some utility classes. -
-
Uses of BytesRefIterator in org.apache.lucene.search.spell
Subinterfaces of BytesRefIterator in org.apache.lucene.search.spell Modifier and Type Interface Description interfaceTermFreqIteratorInterface for enumerating term,weight pairs.Classes in org.apache.lucene.search.spell that implement BytesRefIterator Modifier and Type Class Description static classTermFreqIterator.TermFreqIteratorWrapperWraps a BytesRefIterator as a TermFreqIterator, with all weights set to1Methods in org.apache.lucene.search.spell that return BytesRefIterator Modifier and Type Method Description BytesRefIteratorDictionary. getWordsIterator()Return all words present in the dictionaryBytesRefIteratorHighFrequencyDictionary. getWordsIterator()BytesRefIteratorLuceneDictionary. getWordsIterator()BytesRefIteratorPlainTextDictionary. getWordsIterator()Constructors in org.apache.lucene.search.spell with parameters of type BytesRefIterator Constructor Description TermFreqIteratorWrapper(BytesRefIterator wrapped) -
Uses of BytesRefIterator in org.apache.lucene.search.suggest
Classes in org.apache.lucene.search.suggest that implement BytesRefIterator 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 BytesRefIterator Modifier and Type Method Description BytesRefIteratorBytesRefList. iterator()sugar forBytesRefList.iterator(Comparator)with anullcomparatorBytesRefIteratorBytesRefList. iterator(Comparator<BytesRef> comp)Returns aBytesRefIteratorwith point in time semantics. -
Uses of BytesRefIterator in org.apache.lucene.search.suggest.fst
Methods in org.apache.lucene.search.suggest.fst that return BytesRefIterator Modifier and Type Method Description BytesRefIteratorBytesRefSorter. iterator()Sorts the entries added inBytesRefSorter.add(BytesRef)and returns an iterator over all sorted entries.BytesRefIteratorExternalRefSorter. iterator()BytesRefIteratorInMemorySorter. iterator() -
Uses of BytesRefIterator in org.apache.lucene.util
Fields in org.apache.lucene.util declared as BytesRefIterator Modifier and Type Field Description static BytesRefIteratorBytesRefIterator. EMPTYSingleton BytesRefIterator that iterates over 0 BytesRefs.
-