Java org.apache.lucene.util.automaton Automata fields, constructors, methods, implement or subclass

Example usage for Java org.apache.lucene.util.automaton Automata fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.lucene.util.automaton Automata.

The text is from its open source code.

Method

AutomatonmakeAnyChar()
Returns a new (deterministic) automaton that accepts any single codepoint.
AutomatonmakeAnyString()
Returns a new (deterministic) automaton that accepts all strings.
AutomatonmakeBinaryInterval(BytesRef min, boolean minInclusive, BytesRef max, boolean maxInclusive)
Creates a new deterministic, minimal automaton accepting all binary terms in the specified interval.
AutomatonmakeChar(int c)
Returns a new (deterministic) automaton that accepts a single codepoint of the given value.
AutomatonmakeEmpty()
Returns a new (deterministic) automaton with the empty language.
AutomatonmakeString(String s)
Returns a new (deterministic) automaton that accepts the single given string.
AutomatonmakeStringUnion(Collection utf8Strings)
Returns a new (deterministic and minimal) automaton that accepts the union of the given collection of BytesRef s representing UTF-8 encoded strings.