Class FSTUtil.Path<T>
Holds a pair (automaton, fst) of states and accumulated output in the intersected machine.
Inheritance
System.Object
FSTUtil.Path<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Lucene.Net.Search.Suggest.Analyzing
Assembly: Lucene.Net.Suggest.dll
Syntax
public sealed class Path<T>
Type Parameters
Name | Description |
---|---|
T |
Constructors
| Improve this Doc View SourcePath(State, FST.Arc<T>, T, Int32sRef)
Sole constructor.
Declaration
public Path(State state, FST.Arc<T> fstNode, T output, Int32sRef input)
Parameters
Type | Name | Description |
---|---|---|
State | state | |
FST.Arc<T> | fstNode | |
T | output | |
Int32sRef | input |
Properties
| Improve this Doc View SourceFstNode
Node in the FST where path ends:
Declaration
public FST.Arc<T> FstNode { get; }
Property Value
Type | Description |
---|---|
FST.Arc<T> |
Input
Input of the path so far:
Declaration
public Int32sRef Input { get; }
Property Value
Type | Description |
---|---|
Int32sRef |
Output
Output of the path so far:
Declaration
public T Output { get; set; }
Property Value
Type | Description |
---|---|
T |
State
Node in the automaton where path ends:
Declaration
public State State { get; }
Property Value
Type | Description |
---|---|
State |