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 interface
TermFreqIterator
Interface for enumerating term,weight pairs.Classes in org.apache.lucene.search.spell that implement BytesRefIterator Modifier and Type Class Description static class
TermFreqIterator.TermFreqIteratorWrapper
Wraps a BytesRefIterator as a TermFreqIterator, with all weights set to1
Methods in org.apache.lucene.search.spell that return BytesRefIterator Modifier and Type Method Description BytesRefIterator
Dictionary. getWordsIterator()
Return all words present in the dictionaryBytesRefIterator
HighFrequencyDictionary. getWordsIterator()
BytesRefIterator
LuceneDictionary. getWordsIterator()
BytesRefIterator
PlainTextDictionary. 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 class
BufferingTermFreqIteratorWrapper
This wrapper buffers incoming elements.class
SortedTermFreqIteratorWrapper
This wrapper buffers incoming elements and makes sure they are sorted based on given comparator.class
UnsortedTermFreqIteratorWrapper
This 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 BytesRefIterator
BytesRefList. iterator()
sugar forBytesRefList.iterator(Comparator)
with anull
comparatorBytesRefIterator
BytesRefList. iterator(Comparator<BytesRef> comp)
Returns aBytesRefIterator
with 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 BytesRefIterator
BytesRefSorter. iterator()
Sorts the entries added inBytesRefSorter.add(BytesRef)
and returns an iterator over all sorted entries.BytesRefIterator
ExternalRefSorter. iterator()
BytesRefIterator
InMemorySorter. iterator()
-
Uses of BytesRefIterator in org.apache.lucene.util
Fields in org.apache.lucene.util declared as BytesRefIterator Modifier and Type Field Description static BytesRefIterator
BytesRefIterator. EMPTY
Singleton BytesRefIterator that iterates over 0 BytesRefs.
-