Enum CompiledAutomaton.AUTOMATON_TYPE
Automata are compiled into different internal forms for the most efficient execution depending upon the language they accept.
Namespace: Lucene.Net.Util.Automaton
Assembly: Lucene.Net.dll
Syntax
public enum AUTOMATON_TYPE
Fields
| Name | Description |
|---|---|
| ALL | Automaton that accepts all possible strings. |
| NONE | Automaton that accepts no strings. |
| NORMAL | Catch-all for any other automata. |
| PREFIX | Automaton that matches all strings with a constant prefix. |
| SINGLE | Automaton that accepts only a single fixed string. |