Class FST.Arc<T>
Represents a single arc.
Inheritance
System.Object
    FST.Arc<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)
    
  Namespace: Lucene.Net.Util.Fst
Assembly: Lucene.Net.dll
Syntax
public class Arc<T>
  Type Parameters
| Name | Description | 
|---|---|
| T | 
Properties
| Improve this Doc View SourceIsFinal
Declaration
public virtual bool IsFinal { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
IsLast
Declaration
public virtual bool IsLast { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | 
Label
Declaration
public int Label { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | 
NextFinalOutput
Declaration
public T NextFinalOutput { get; set; }
  Property Value
| Type | Description | 
|---|---|
| T | 
Output
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 | 
|---|---|
| System.Int64 | 
Methods
| Improve this Doc View SourceCopyFrom(FST.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()
Declaration
public override string ToString()
  Returns
| Type | Description | 
|---|---|
| System.String | 
Overrides
System.Object.ToString()