Class FSTUtil.Path<T>
- java.lang.Object
-
- org.apache.lucene.search.suggest.analyzing.FSTUtil.Path<T>
-
- Enclosing class:
- FSTUtil
public static final class FSTUtil.Path<T> extends java.lang.Object
Holds a pair (automaton, fst) of states and accumulated output in the intersected machine.
-
-
Constructor Summary
Constructors Constructor Description Path(int state, FST.Arc<T> fstNode, T output, IntsRefBuilder input)
Sole constructor.
-
-
-
Field Detail
-
state
public final int state
Node in the automaton where path ends:
-
output
public final T output
Output of the path so far:
-
input
public final IntsRefBuilder input
Input of the path so far:
-
-
Constructor Detail
-
Path
public Path(int state, FST.Arc<T> fstNode, T output, IntsRefBuilder input)
Sole constructor.
-
-