Uses of Class
org.apache.lucene.util.IntsRef
-
Packages that use IntsRef Package Description org.apache.lucene.util Some utility classes.org.apache.lucene.util.fst Finite state transducers -
-
Uses of IntsRef in org.apache.lucene.util
Methods in org.apache.lucene.util that return IntsRef Modifier and Type Method Description IntsRefIntsRef. clone()static IntsRefIntsRef. deepCopyOf(IntsRef other)Creates a new IntsRef that points to a copy of the ints fromotherMethods in org.apache.lucene.util with parameters of type IntsRef Modifier and Type Method Description intIntsRef. compareTo(IntsRef other)Signed int order comparisonvoidIntsRef. copyInts(IntsRef other)static IntsRefIntsRef. deepCopyOf(IntsRef other)Creates a new IntsRef that points to a copy of the ints fromotherbooleanIntsRef. intsEquals(IntsRef other) -
Uses of IntsRef in org.apache.lucene.util.fst
Fields in org.apache.lucene.util.fst declared as IntsRef Modifier and Type Field Description IntsRefIntsRefFSTEnum.InputOutput. inputIntsRefUtil.MinResult. inputMethods in org.apache.lucene.util.fst that return IntsRef Modifier and Type Method Description IntsRefIntSequenceOutputs. add(IntsRef prefix, IntsRef output)IntsRefIntSequenceOutputs. common(IntsRef output1, IntsRef output2)static IntsRefUtil. getByOutput(FST<Long> fst, long targetOutput)Reverse lookup (lookup by output instead of by input), in the special case when your FSTs outputs are strictly ascending.IntsRefIntSequenceOutputs. getNoOutput()IntsRefIntSequenceOutputs. read(DataInput in)IntsRefIntSequenceOutputs. subtract(IntsRef output, IntsRef inc)static IntsRefUtil. toIntsRef(BytesRef input, IntsRef scratch)Just takes unsigned byte values from the BytesRef and converts into an IntsRef.static IntsRefUtil. toUTF32(char[] s, int offset, int length, IntsRef 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(CharSequence s, IntsRef scratch)Decodes the Unicode codepoints from the provided CharSequence and places them in the provided scratch IntsRef, which must not be null, returning it.Methods in org.apache.lucene.util.fst with parameters of type IntsRef Modifier and Type Method Description voidBuilder. add(IntsRef input, T output)It's OK to add the same input twice in a row with different outputs, as long as outputs impls the merge method.IntsRefIntSequenceOutputs. add(IntsRef prefix, IntsRef output)IntsRefIntSequenceOutputs. common(IntsRef output1, IntsRef output2)abstract voidBuilder.FreezeTail. freeze(Builder.UnCompiledNode<T>[] frontier, int prefixLenPlus1, IntsRef prevInput)static <T> TUtil. get(FST<T> fst, IntsRef input)Looks up the output for this input, or null if the input is not accepted.StringIntSequenceOutputs. outputToString(IntsRef output)IntsRefFSTEnum.InputOutput<T>IntsRefFSTEnum. seekCeil(IntsRef target)Seeks to smallest term that's >= target.IntsRefFSTEnum.InputOutput<T>IntsRefFSTEnum. seekExact(IntsRef target)Seeks to exactly this term, returning null if the term doesn't exist.IntsRefFSTEnum.InputOutput<T>IntsRefFSTEnum. seekFloor(IntsRef target)Seeks to biggest term that's <= target.IntsRefIntSequenceOutputs. subtract(IntsRef output, IntsRef inc)static BytesRefUtil. toBytesRef(IntsRef input, BytesRef scratch)Just converts IntsRef to BytesRef; you must ensure the int values fit into a byte.static IntsRefUtil. toIntsRef(BytesRef input, IntsRef scratch)Just takes unsigned byte values from the BytesRef and converts into an IntsRef.static IntsRefUtil. toUTF32(char[] s, int offset, int length, IntsRef 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(CharSequence s, IntsRef scratch)Decodes the Unicode codepoints from the provided CharSequence and places them in the provided scratch IntsRef, which must not be null, returning it.voidIntSequenceOutputs. write(IntsRef prefix, DataOutput out)Constructors in org.apache.lucene.util.fst with parameters of type IntsRef Constructor Description MinResult(IntsRef input, T output, Comparator<T> comparator)
-