Uses of Class
org.apache.lucene.util.OfflineSorter.ByteSequencesWriter
-
Packages that use OfflineSorter.ByteSequencesWriter Package Description org.apache.lucene.analysis.hunspell A Java implementation of Hunspell stemming and spell-checking algorithms (Hunspell
), and a stemming TokenFilter (HunspellStemFilter
) based on it.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 OfflineSorter.ByteSequencesWriter in org.apache.lucene.analysis.hunspell
Methods in org.apache.lucene.analysis.hunspell with parameters of type OfflineSorter.ByteSequencesWriter Modifier and Type Method Description private void
Dictionary. addHiddenCapitalizedWord(java.lang.StringBuilder reuse, OfflineSorter.ByteSequencesWriter writer, java.lang.String word, java.lang.String afterSep)
private int
Dictionary. writeNormalizedWordEntry(java.lang.StringBuilder reuse, OfflineSorter.ByteSequencesWriter writer, java.lang.String line)
-
Uses of OfflineSorter.ByteSequencesWriter in org.apache.lucene.search.suggest
Methods in org.apache.lucene.search.suggest with parameters of type OfflineSorter.ByteSequencesWriter Modifier and Type Method Description protected void
SortedInputIterator. encode(OfflineSorter.ByteSequencesWriter writer, ByteArrayDataOutput output, byte[] buffer, BytesRef spare, BytesRef payload, java.util.Set<BytesRef> contexts, long weight)
encodes an entry (bytes+(contexts)+(payload)+weight) to the provided writer -
Uses of OfflineSorter.ByteSequencesWriter in org.apache.lucene.search.suggest.fst
Fields in org.apache.lucene.search.suggest.fst declared as OfflineSorter.ByteSequencesWriter Modifier and Type Field Description private OfflineSorter.ByteSequencesWriter
ExternalRefSorter. writer
Methods in org.apache.lucene.search.suggest.fst with parameters of type OfflineSorter.ByteSequencesWriter Modifier and Type Method Description protected void
WFSTCompletionLookup.WFSTInputIterator. encode(OfflineSorter.ByteSequencesWriter writer, ByteArrayDataOutput output, byte[] buffer, BytesRef spare, BytesRef payload, java.util.Set<BytesRef> contexts, long weight)
-
Uses of OfflineSorter.ByteSequencesWriter in org.apache.lucene.util
Methods in org.apache.lucene.util that return OfflineSorter.ByteSequencesWriter Modifier and Type Method Description protected OfflineSorter.ByteSequencesWriter
OfflineSorter. getWriter(IndexOutput out, long itemCount)
Subclasses can override to change how byte sequences are written to disk.
-