Class FST.Arc<T>
Represents a single arc.
Inherited Members
Namespace: Lucene.Net.Util.Fst
Assembly: Lucene.Net.dll
Syntax
public class FST.Arc<T> where T : class
  Type Parameters
| Name | Description | 
|---|---|
| T | 
Properties
IsFinal
Represents a single arc.
Declaration
public virtual bool IsFinal { get; }
  Property Value
| Type | Description | 
|---|---|
| bool | 
IsLast
Represents a single arc.
Declaration
public virtual bool IsLast { get; }
  Property Value
| Type | Description | 
|---|---|
| bool | 
Label
Represents a single arc.
Declaration
public int Label { get; set; }
  Property Value
| Type | Description | 
|---|---|
| int | 
NextFinalOutput
Represents a single arc.
Declaration
public T NextFinalOutput { get; set; }
  Property Value
| Type | Description | 
|---|---|
| T | 
Output
Represents a single arc.
Declaration
public T Output { get; set; }
  Property Value
| Type | Description | 
|---|---|
| T | 
Target
To node (ord or address)
Declaration
public long Target { get; set; }
  Property Value
| Type | Description | 
|---|---|
| long | 
Methods
CopyFrom(Arc<T>)
Return this
Declaration
public FST.Arc<T> CopyFrom(FST.Arc<T> other)
  Parameters
| Type | Name | Description | 
|---|---|---|
| FST.Arc<T> | other | 
Returns
| Type | Description | 
|---|---|
| FST.Arc<T> | 
ToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
  Returns
| Type | Description | 
|---|---|
| string | A string that represents the current object.  |