Package org.apache.lucene.util.fst
Class FSTCompiler.Arc<T>
- java.lang.Object
-
- org.apache.lucene.util.fst.FSTCompiler.Arc<T>
-
- Enclosing class:
- FSTCompiler<T>
static class FSTCompiler.Arc<T> extends java.lang.Object
Expert: holds a pending (seen but not yet serialized) arc.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) boolean
isFinal
(package private) int
label
(package private) T
nextFinalOutput
(package private) T
output
(package private) FSTCompiler.Node
target
-
Constructor Summary
Constructors Constructor Description Arc()
-
-
-
Field Detail
-
label
int label
-
target
FSTCompiler.Node target
-
isFinal
boolean isFinal
-
output
T output
-
nextFinalOutput
T nextFinalOutput
-
-