Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Class FSTUtil.Path<T>

    Holds a pair (automaton, fst) of states and accumulated output in the intersected machine.

    Inheritance
    object
    FSTUtil.Path<T>
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Lucene.Net.Search.Suggest.Analyzing
    Assembly: Lucene.Net.Suggest.dll
    Syntax
    public sealed class FSTUtil.Path<T> where T : class
    Type Parameters
    Name Description
    T

    Constructors

    Path(State, 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

    FstNode

    Node in the Lucene.Net.Util.Fst.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
    Back to top Copyright © 2024 The Apache Software Foundation, Licensed under the Apache License, Version 2.0
    Apache Lucene.Net, Lucene.Net, Apache, the Apache feather logo, and the Apache Lucene.Net project logo are trademarks of The Apache Software Foundation.
    All other marks mentioned may be trademarks or registered trademarks of their respective owners.