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 IntsRefBuilderVariableGapTermsIndexWriter.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 IntsRefBuilderBlockTreeTermsWriter. scratchIntsRefMethods in org.apache.lucene.codecs.blocktree with parameters of type IntsRefBuilder Modifier and Type Method Description private voidBlockTreeTermsWriter.PendingBlock. append(Builder<BytesRef> builder, FST<BytesRef> subIndex, IntsRefBuilder scratchIntsRef)voidBlockTreeTermsWriter.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 IntsRefBuilderOrdsBlockTreeTermsWriter. scratchIntsRefMethods in org.apache.lucene.codecs.blocktreeords with parameters of type IntsRefBuilder Modifier and Type Method Description private voidOrdsBlockTreeTermsWriter.PendingBlock. append(Builder<FSTOrdsOutputs.Output> builder, FST<FSTOrdsOutputs.Output> subIndex, long termOrdOffset, IntsRefBuilder scratchIntsRef)voidOrdsBlockTreeTermsWriter.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 IntsRefBuilderVersionBlockTreeTermsWriter. scratchIntsRefMethods in org.apache.lucene.codecs.idversion with parameters of type IntsRefBuilder Modifier and Type Method Description private voidVersionBlockTreeTermsWriter.PendingBlock. append(Builder<PairOutputs.Pair<BytesRef,java.lang.Long>> builder, FST<PairOutputs.Pair<BytesRef,java.lang.Long>> subIndex, IntsRefBuilder scratchIntsRef)voidVersionBlockTreeTermsWriter.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 IntsRefBuilderFSTTermsWriter.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 IntsRefBuilderIntersectBlockReader.AutomatonNextTermCalculator. savedStatesprotected IntsRefBuilderFSTDictionary.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 IntsRefBuilderAutomatonTermsEnum. 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 IntsRefBuilderFSTUtil.Path. inputInput 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 IntsRefBuilderContextQuery. scratchprivate IntsRefBuilderNRTSuggesterBuilder. 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 IntsRefBuilderFiniteStringsIterator. stringBuilder 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 IntsRefBuilderUtil.FSTPath. inputprivate IntsRefBuilderBuilder. lastInputMethods in org.apache.lucene.util.fst with parameters of type IntsRefBuilder Modifier and Type Method Description voidUtil.TopNSearcher. addStartPaths(FST.Arc<T> node, T startOutput, boolean allowEmptyString, IntsRefBuilder input)voidUtil.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 IntsRefUtil. 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 IntsRefUtil. toIntsRef(BytesRef input, IntsRefBuilder scratch)Just takes unsigned byte values from the BytesRef and converts into an IntsRef.static IntsRefUtil. toUTF16(java.lang.CharSequence s, IntsRefBuilder scratch)Just maps each UTF16 unit (char) to the ints in an IntsRef.static IntsRefUtil. 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 IntsRefUtil. 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)
-