Uses of Class
org.apache.lucene.util.IntsRefBuilder
Packages that use IntsRefBuilder
Package
Description
A Java implementation of Hunspell stemming and
spell-checking algorithms (
Hunspell
), and a stemming
TokenFilter (HunspellStemFilter
) based on it.Pluggable term index / block terms dictionary implementations.
Same postings format as Lucene50, except the terms dictionary also supports ords, i.e.
BlockTree terms dictionary.
Term dictionary, DocValues or Postings formats that are read entirely into memory.
Pluggable term index / block terms dictionary implementations.
Code to maintain and access indices.
A primary-key postings format that associates a version (long) with each term and can provide
fail-fast lookups by ID and version.
Analyzer based autosuggest.
Support for document suggestion
Finite-state automaton for regular expressions.
Finite state transducers
-
Uses of IntsRefBuilder in org.apache.lucene.analysis.hunspell
Fields in org.apache.lucene.analysis.hunspell declared as IntsRefBuilder -
Uses of IntsRefBuilder in org.apache.lucene.codecs.blockterms
Fields in org.apache.lucene.codecs.blockterms declared as IntsRefBuilderModifier and TypeFieldDescriptionprivate final IntsRefBuilder
VariableGapTermsIndexWriter.FSTFieldWriter.scratchIntsRef
-
Uses of IntsRefBuilder in org.apache.lucene.codecs.blocktreeords
Fields in org.apache.lucene.codecs.blocktreeords declared as IntsRefBuilderModifier and TypeFieldDescriptionprivate final IntsRefBuilder
OrdsBlockTreeTermsWriter.scratchIntsRef
Methods in org.apache.lucene.codecs.blocktreeords with parameters of type IntsRefBuilderModifier and TypeMethodDescriptionprivate void
OrdsBlockTreeTermsWriter.PendingBlock.append
(FSTCompiler<FSTOrdsOutputs.Output> fstCompiler, FST<FSTOrdsOutputs.Output> subIndex, long termOrdOffset, IntsRefBuilder scratchIntsRef) void
OrdsBlockTreeTermsWriter.PendingBlock.compileIndex
(List<OrdsBlockTreeTermsWriter.PendingBlock> blocks, ByteBuffersDataOutput scratchBytes, IntsRefBuilder scratchIntsRef) -
Uses of IntsRefBuilder in org.apache.lucene.codecs.lucene90.blocktree
Fields in org.apache.lucene.codecs.lucene90.blocktree declared as IntsRefBuilderModifier and TypeFieldDescriptionprivate final IntsRefBuilder
Lucene90BlockTreeTermsWriter.scratchIntsRef
Methods in org.apache.lucene.codecs.lucene90.blocktree with parameters of type IntsRefBuilderModifier and TypeMethodDescriptionprivate void
Lucene90BlockTreeTermsWriter.PendingBlock.append
(FSTCompiler<BytesRef> fstCompiler, FST<BytesRef> subIndex, IntsRefBuilder scratchIntsRef) void
Lucene90BlockTreeTermsWriter.PendingBlock.compileIndex
(List<Lucene90BlockTreeTermsWriter.PendingBlock> blocks, ByteBuffersDataOutput scratchBytes, IntsRefBuilder scratchIntsRef) -
Uses of IntsRefBuilder in org.apache.lucene.codecs.memory
Fields in org.apache.lucene.codecs.memory declared as IntsRefBuilderModifier and TypeFieldDescriptionprivate final IntsRefBuilder
FSTTermsWriter.TermsWriter.scratchTerm
-
Uses of IntsRefBuilder in org.apache.lucene.codecs.uniformsplit
Fields in org.apache.lucene.codecs.uniformsplit declared as IntsRefBuilderModifier and TypeFieldDescriptionprotected final IntsRefBuilder
IntersectBlockReader.AutomatonNextTermCalculator.savedStates
protected final IntsRefBuilder
FSTDictionary.Builder.scratchInts
-
Uses of IntsRefBuilder in org.apache.lucene.index
Fields in org.apache.lucene.index declared as IntsRefBuilder -
Uses of IntsRefBuilder in org.apache.lucene.sandbox.codecs.idversion
Fields in org.apache.lucene.sandbox.codecs.idversion declared as IntsRefBuilderModifier and TypeFieldDescriptionprivate final IntsRefBuilder
VersionBlockTreeTermsWriter.scratchIntsRef
Methods in org.apache.lucene.sandbox.codecs.idversion with parameters of type IntsRefBuilderModifier and TypeMethodDescriptionprivate void
VersionBlockTreeTermsWriter.PendingBlock.append
(FSTCompiler<PairOutputs.Pair<BytesRef, Long>> fstCompiler, FST<PairOutputs.Pair<BytesRef, Long>> subIndex, IntsRefBuilder scratchIntsRef) void
VersionBlockTreeTermsWriter.PendingBlock.compileIndex
(List<VersionBlockTreeTermsWriter.PendingBlock> blocks, ByteBuffersDataOutput scratchBytes, IntsRefBuilder scratchIntsRef) -
Uses of IntsRefBuilder in org.apache.lucene.search.suggest.analyzing
Fields in org.apache.lucene.search.suggest.analyzing declared as IntsRefBuilderModifier and TypeFieldDescriptionfinal IntsRefBuilder
FSTUtil.Path.input
Input of the path so far:Constructors in org.apache.lucene.search.suggest.analyzing with parameters of type IntsRefBuilderModifierConstructorDescriptionPath
(int state, FST.Arc<T> fstNode, T output, IntsRefBuilder input) Sole constructor. -
Uses of IntsRefBuilder in org.apache.lucene.search.suggest.document
Fields in org.apache.lucene.search.suggest.document declared as IntsRefBuilderModifier and TypeFieldDescriptionprivate IntsRefBuilder
ContextQuery.scratch
private final IntsRefBuilder
NRTSuggesterBuilder.scratchInts
-
Uses of IntsRefBuilder in org.apache.lucene.util.automaton
Fields in org.apache.lucene.util.automaton declared as IntsRefBuilderModifier and TypeFieldDescriptionprivate final IntsRefBuilder
FiniteStringsIterator.string
Builder for current finite string. -
Uses of IntsRefBuilder in org.apache.lucene.util.fst
Fields in org.apache.lucene.util.fst declared as IntsRefBuilderModifier and TypeFieldDescriptionfinal IntsRefBuilder
Util.FSTPath.input
private final IntsRefBuilder
FSTCompiler.lastInput
Methods in org.apache.lucene.util.fst with parameters of type IntsRefBuilderModifier and TypeMethodDescriptionvoid
Util.TopNSearcher.addStartPaths
(FST.Arc<T> node, T startOutput, boolean allowEmptyString, IntsRefBuilder input) void
Util.TopNSearcher.addStartPaths
(FST.Arc<T> node, T startOutput, boolean allowEmptyString, IntsRefBuilder input, float boost, CharSequence context, int payload) Adds all leaving arcs, including 'finished' arc, if the node is final, from this node into the queue.(package private) Util.FSTPath
<T> Util.FSTPath.newPath
(T output, IntsRefBuilder input) static IntsRef
Util.toIntsRef
(BytesRef input, IntsRefBuilder scratch) Just takes unsigned byte values from the BytesRef and converts into an IntsRef.static IntsRef
Util.toUTF16
(CharSequence s, IntsRefBuilder scratch) Just maps each UTF16 unit (char) to the ints in an IntsRef.static IntsRef
Util.toUTF32
(char[] s, int offset, int length, IntsRefBuilder scratch) Decodes the Unicode codepoints from the provided char[] and places them in the provided scratch IntsRef, which must not be null, returning it.static IntsRef
Util.toUTF32
(CharSequence s, IntsRefBuilder scratch) Decodes the Unicode codepoints from the provided CharSequence and places them in the provided scratch IntsRef, which must not be null, returning it.Constructors in org.apache.lucene.util.fst with parameters of type IntsRefBuilderModifierConstructorDescription(package private)
FSTPath
(T output, FST.Arc<T> arc, IntsRefBuilder input, float boost, CharSequence context, int payload)