Class FST
LUCENENET specific: This new base class is to mimic Java's ability to use nested types without specifying
a type parameter. i.e. FST.BytesReader instead of FST<BytesRef>.BytesReader
Assembly: Lucene.Net.dll
Syntax
Constructors
FST()
LUCENENET specific: This new base class is to mimic Java's ability to use nested types without specifying
a type parameter. i.e. FST.BytesReader instead of FST<BytesRef>.BytesReader
Declaration
Fields
DEFAULT_MAX_BLOCK_BITS
LUCENENET specific: This new base class is to mimic Java's ability to use nested types without specifying
a type parameter. i.e. FST.BytesReader instead of FST<BytesRef>.BytesReader
Declaration
public static readonly int DEFAULT_MAX_BLOCK_BITS
Field Value
END_LABEL
If arc has this label then that arc is final/accepted
Declaration
public static readonly int END_LABEL
Field Value
FIXED_ARRAY_NUM_ARCS_DEEP
Declaration
public const int FIXED_ARRAY_NUM_ARCS_DEEP = 10
Field Value
FIXED_ARRAY_NUM_ARCS_SHALLOW
Declaration
public const int FIXED_ARRAY_NUM_ARCS_SHALLOW = 5
Field Value
FIXED_ARRAY_SHALLOW_DISTANCE
Declaration
public const int FIXED_ARRAY_SHALLOW_DISTANCE = 3
Field Value
Methods
Read<T>(FileInfo, Outputs<T>)
Reads an automaton from a file.
Declaration
public static FST<T> Read<T>(FileInfo file, Outputs<T> outputs) where T : class
Parameters
Returns
Type Parameters
TargetHasArcs<T>(Arc<T>)
returns true
if the node at this address has any
outgoing arcs
Declaration
public static bool TargetHasArcs<T>(FST.Arc<T> arc) where T : class
Parameters
Type |
Name |
Description |
FST.Arc<T> |
arc |
|
Returns
Type Parameters