Uses of Class
org.apache.lucene.util.fst.Outputs
-
Packages that use Outputs Package Description org.apache.lucene.util.fst Finite state transducers -
-
Uses of Outputs in org.apache.lucene.util.fst
Subclasses of Outputs in org.apache.lucene.util.fst Modifier and Type Class Description classByteSequenceOutputsAn FSTOutputsimplementation where each output is a sequence of bytes.classCharSequenceOutputsAn FSTOutputsimplementation where each output is a sequence of characters.classIntSequenceOutputsAn FSTOutputsimplementation where each output is a sequence of ints.classNoOutputsA null FSTOutputsimplementation; use this if you just want to build an FSA.classPairOutputs<A,B>An FSTOutputsimplementation, holding two other outputs.classPositiveIntOutputsAn FSTOutputsimplementation where each output is a non-negative long value.Fields in org.apache.lucene.util.fst declared as Outputs Modifier and Type Field Description Outputs<T>FST. outputsMethods in org.apache.lucene.util.fst with parameters of type Outputs Modifier and Type Method Description static <T> FST<T>FST. read(Path path, Outputs<T> outputs)Reads an automaton from a file.Constructors in org.apache.lucene.util.fst with parameters of type Outputs Constructor Description Builder(FST.INPUT_TYPE inputType, Outputs<T> outputs)FST(DataInput metaIn, DataInput in, Outputs<T> outputs)Load a previously saved FST.FST(DataInput metaIn, DataInput in, Outputs<T> outputs, FSTStore fstStore)Load a previously saved FST; maxBlockBits allows you to control the size of the byte[] pages used to hold the FST bytes.FSTCompiler(FST.INPUT_TYPE inputType, Outputs<T> outputs)Instantiates an FST/FSA builder with default settings and pruning options turned off.PairOutputs(Outputs<A> outputs1, Outputs<B> outputs2)
-