Package | Description |
---|---|
org.apache.lucene.analysis.hunspell |
Stemming TokenFilter using a Java implementation of the
Hunspell stemming algorithm.
|
org.apache.lucene.codecs.blocktree |
BlockTree terms dictionary.
|
org.apache.lucene.codecs.idversion |
A primary-key postings format that associates a version (long) with each term and
can provide fail-fast lookups by ID and version.
|
org.apache.lucene.util.fst |
Finite state transducers
|
Modifier and Type | Method and Description |
---|---|
private void |
Dictionary.readDictionaryFiles(Directory tempDir,
java.lang.String tempFileNamePrefix,
java.util.List<java.io.InputStream> dictionaries,
java.nio.charset.CharsetDecoder decoder,
Builder<IntsRef> words)
Reads the dictionary file through the provided InputStreams, building up the words map
|
Modifier and Type | Method and Description |
---|---|
private void |
BlockTreeTermsWriter.PendingBlock.append(Builder<BytesRef> builder,
FST<BytesRef> subIndex,
IntsRefBuilder scratchIntsRef) |
Modifier and Type | Method and Description |
---|---|
private void |
VersionBlockTreeTermsWriter.PendingBlock.append(Builder<PairOutputs.Pair<BytesRef,java.lang.Long>> builder,
FST<PairOutputs.Pair<BytesRef,java.lang.Long>> subIndex,
IntsRefBuilder scratchIntsRef) |
Modifier and Type | Field and Description |
---|---|
(package private) Builder<T> |
Builder.UnCompiledNode.owner |
Modifier and Type | Method and Description |
---|---|
long |
NodeHash.add(Builder<T> builder,
Builder.UnCompiledNode<T> nodeIn) |
(package private) long |
FST.addNode(Builder<T> builder,
Builder.UnCompiledNode<T> nodeIn) |
private boolean |
FST.shouldExpand(Builder<T> builder,
Builder.UnCompiledNode<T> node)
Nodes will be expanded if their depth (distance from the root node) is
<= this value and their number of arcs is >=
FST.FIXED_ARRAY_NUM_ARCS_SHALLOW . |
Constructor and Description |
---|
UnCompiledNode(Builder<T> owner,
int depth) |