Uses of Class
org.apache.lucene.util.IntsRefBuilder
-
Packages that use IntsRefBuilder Package Description org.apache.lucene.codecs.blockterms Pluggable term index / block terms dictionary implementations.org.apache.lucene.codecs.blocktree BlockTree terms dictionary.org.apache.lucene.codecs.blocktreeords Same postings format as Lucene50, except the terms dictionary also supports ords, i.e.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.codecs.memory Term dictionary, DocValues or Postings formats that are read entirely into memory.org.apache.lucene.codecs.uniformsplit Pluggable term index / block terms dictionary implementations.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.search.suggest.analyzing Analyzer based autosuggest.org.apache.lucene.search.suggest.document Support for document suggestionorg.apache.lucene.util.automaton Finite-state automaton for regular expressions.org.apache.lucene.util.fst Finite state transducers -
-
Uses of IntsRefBuilder in org.apache.lucene.codecs.blockterms
Fields in org.apache.lucene.codecs.blockterms declared as IntsRefBuilder Modifier and Type Field Description private IntsRefBuilder
VariableGapTermsIndexWriter.FSTFieldWriter. scratchIntsRef
-
Uses of IntsRefBuilder in org.apache.lucene.codecs.blocktree
Fields in org.apache.lucene.codecs.blocktree declared as IntsRefBuilder Modifier and Type Field Description private IntsRefBuilder
BlockTreeTermsWriter. scratchIntsRef
Methods in org.apache.lucene.codecs.blocktree with parameters of type IntsRefBuilder Modifier and Type Method Description private void
BlockTreeTermsWriter.PendingBlock. append(Builder<BytesRef> builder, FST<BytesRef> subIndex, IntsRefBuilder scratchIntsRef)
void
BlockTreeTermsWriter.PendingBlock. compileIndex(java.util.List<BlockTreeTermsWriter.PendingBlock> blocks, RAMOutputStream scratchBytes, IntsRefBuilder scratchIntsRef)
-
Uses of IntsRefBuilder in org.apache.lucene.codecs.blocktreeords
Fields in org.apache.lucene.codecs.blocktreeords declared as IntsRefBuilder Modifier and Type Field Description private IntsRefBuilder
OrdsBlockTreeTermsWriter. scratchIntsRef
Methods in org.apache.lucene.codecs.blocktreeords with parameters of type IntsRefBuilder Modifier and Type Method Description private void
OrdsBlockTreeTermsWriter.PendingBlock. append(Builder<FSTOrdsOutputs.Output> builder, FST<FSTOrdsOutputs.Output> subIndex, long termOrdOffset, IntsRefBuilder scratchIntsRef)
void
OrdsBlockTreeTermsWriter.PendingBlock. compileIndex(java.util.List<OrdsBlockTreeTermsWriter.PendingBlock> blocks, RAMOutputStream scratchBytes, IntsRefBuilder scratchIntsRef)
-
Uses of IntsRefBuilder in org.apache.lucene.codecs.idversion
Fields in org.apache.lucene.codecs.idversion declared as IntsRefBuilder Modifier and Type Field Description private IntsRefBuilder
VersionBlockTreeTermsWriter. scratchIntsRef
Methods in org.apache.lucene.codecs.idversion with parameters of type IntsRefBuilder Modifier and Type Method Description private void
VersionBlockTreeTermsWriter.PendingBlock. append(Builder<PairOutputs.Pair<BytesRef,java.lang.Long>> builder, FST<PairOutputs.Pair<BytesRef,java.lang.Long>> subIndex, IntsRefBuilder scratchIntsRef)
void
VersionBlockTreeTermsWriter.PendingBlock. compileIndex(java.util.List<VersionBlockTreeTermsWriter.PendingBlock> blocks, RAMOutputStream scratchBytes, IntsRefBuilder scratchIntsRef)
-
Uses of IntsRefBuilder in org.apache.lucene.codecs.memory
Fields in org.apache.lucene.codecs.memory declared as IntsRefBuilder Modifier and Type Field Description private IntsRefBuilder
FSTOrdTermsWriter.TermsWriter. scratchTerm
private IntsRefBuilder
FSTTermsWriter.TermsWriter. scratchTerm
-
Uses of IntsRefBuilder in org.apache.lucene.codecs.uniformsplit
Fields in org.apache.lucene.codecs.uniformsplit declared as IntsRefBuilder Modifier and Type Field Description protected IntsRefBuilder
IntersectBlockReader.AutomatonNextTermCalculator. savedStates
protected IntsRefBuilder
FSTDictionary.Builder. scratchInts
-
Uses of IntsRefBuilder in org.apache.lucene.index
Fields in org.apache.lucene.index declared as IntsRefBuilder Modifier and Type Field Description private IntsRefBuilder
AutomatonTermsEnum. savedStates
-
Uses of IntsRefBuilder in org.apache.lucene.search.suggest.analyzing
Fields in org.apache.lucene.search.suggest.analyzing declared as IntsRefBuilder Modifier and Type Field Description IntsRefBuilder
FSTUtil.Path. input
Input of the path so far:Constructors in org.apache.lucene.search.suggest.analyzing with parameters of type IntsRefBuilder Constructor Description Path(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 IntsRefBuilder Modifier and Type Field Description private IntsRefBuilder
ContextQuery. scratch
private IntsRefBuilder
NRTSuggesterBuilder. scratchInts
-
Uses of IntsRefBuilder in org.apache.lucene.util.automaton
Fields in org.apache.lucene.util.automaton declared as IntsRefBuilder Modifier and Type Field Description private 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 IntsRefBuilder Modifier and Type Field Description IntsRefBuilder
Util.FSTPath. input
private IntsRefBuilder
Builder. lastInput
Methods in org.apache.lucene.util.fst with parameters of type IntsRefBuilder Modifier and Type Method Description void
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, java.lang.CharSequence context, int payload)
Adds all leaving arcs, including 'finished' arc, if the node is final, from this node into the queue.static IntsRef
Util. getByOutput(FST<java.lang.Long> fst, long targetOutput, FST.BytesReader in, FST.Arc<java.lang.Long> arc, FST.Arc<java.lang.Long> scratchArc, IntsRefBuilder result)
Deprecated.(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(java.lang.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(java.lang.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 IntsRefBuilder Constructor Description FSTPath(T output, FST.Arc<T> arc, IntsRefBuilder input, float boost, java.lang.CharSequence context, int payload)
-