Uses of Class
org.apache.lucene.util.fst.Outputs
Packages that use Outputs
-
Uses of Outputs in org.apache.lucene.util.fst
Subclasses of Outputs in org.apache.lucene.util.fstModifier and TypeClassDescriptionfinal class
An FSTOutputs
implementation where each output is a sequence of bytes.final class
An FSTOutputs
implementation where each output is a sequence of characters.final class
An FSTOutputs
implementation where each output is a sequence of ints.final class
A null FSTOutputs
implementation; use this if you just want to build an FSA.class
PairOutputs<A,
B> An FSTOutputs
implementation, holding two other outputs.final class
An FSTOutputs
implementation where each output is a non-negative long value.Fields in org.apache.lucene.util.fst declared as OutputsMethods in org.apache.lucene.util.fst with parameters of type OutputsConstructors in org.apache.lucene.util.fst with parameters of type OutputsModifierConstructorDescriptionBuilder
(FST.INPUT_TYPE inputType, int minSuffixCount1, int minSuffixCount2, boolean doShareSuffix, boolean doShareNonSingletonNodes, int shareMaxTailLength, Outputs<T> outputs, Builder.FreezeTail<T> freezeTail, boolean doPackFST, float acceptableOverheadRatio, boolean allowArrayArcs, int bytesPageBits) Instantiates an FST/FSA builder with all the possible tuning and construction tweaks.Builder
(FST.INPUT_TYPE inputType, Outputs<T> outputs) Instantiates an FST/FSA builder without any pruning.Load a previously saved FST.Load a previously saved FST; maxBlockBits allows you to control the size of the byte[] pages used to hold the FST bytes.PairOutputs
(Outputs<A> outputs1, Outputs<B> outputs2)