Class CharacterRunAutomaton
Automaton representation for matching char[].
Inheritance
CharacterRunAutomaton
Assembly: Lucene.Net.dll
Syntax
public class CharacterRunAutomaton : RunAutomaton
Constructors
CharacterRunAutomaton(Automaton)
Automaton representation for matching char[].
Declaration
public CharacterRunAutomaton(Automaton a)
Parameters
Methods
Run(char[], int, int)
Returns true
if the given string is accepted by this automaton.
Declaration
public virtual bool Run(char[] s, int offset, int length)
Parameters
Type |
Name |
Description |
char[] |
s |
|
int |
offset |
|
int |
length |
|
Returns
Run(string)
Returns true
if the given string is accepted by this automaton.
Declaration
public virtual bool Run(string s)
Parameters
Type |
Name |
Description |
string |
s |
|
Returns