Uses of Class
org.apache.lucene.util.automaton.Automaton.Builder
-
Packages that use Automaton.Builder Package Description org.apache.lucene.analysis Text analysis.org.apache.lucene.sandbox.search This package contains a flexible graph-based proximity query, TermAutomatonQuery, and geospatial queries.org.apache.lucene.util.automaton Finite-state automaton for regular expressions. -
-
Uses of Automaton.Builder in org.apache.lucene.analysis
Methods in org.apache.lucene.analysis with parameters of type Automaton.Builder Modifier and Type Method Description private static void
TokenStreamToAutomaton. addHoles(Automaton.Builder builder, RollingBuffer<TokenStreamToAutomaton.Position> positions, int pos)
-
Uses of Automaton.Builder in org.apache.lucene.sandbox.search
Fields in org.apache.lucene.sandbox.search declared as Automaton.Builder Modifier and Type Field Description private Automaton.Builder
TermAutomatonQuery. builder
-
Uses of Automaton.Builder in org.apache.lucene.util.automaton
Fields in org.apache.lucene.util.automaton declared as Automaton.Builder Modifier and Type Field Description (package private) Automaton.Builder
UTF32ToUTF8. utf8
Methods in org.apache.lucene.util.automaton with parameters of type Automaton.Builder Modifier and Type Method Description private static int
Automata. anyOfRightLength(Automaton.Builder builder, java.lang.String x, int n)
Constructs sub-automaton corresponding to decimal numbers of length x.substring(n).length().private static int
Automata. atLeast(Automaton.Builder builder, java.lang.String x, int n, java.util.Collection<java.lang.Integer> initials, boolean zeros)
Constructs sub-automaton corresponding to decimal numbers of value at least x.substring(n) and length x.substring(n).length().private static int
Automata. atMost(Automaton.Builder builder, java.lang.String x, int n)
Constructs sub-automaton corresponding to decimal numbers of value at most x.substring(n) and length x.substring(n).length().private static int
Automata. between(Automaton.Builder builder, java.lang.String x, java.lang.String y, int n, java.util.Collection<java.lang.Integer> initials, boolean zeros)
Constructs sub-automaton corresponding to decimal numbers of value between x.substring(n) and y.substring(n) and of length x.substring(n).length() (which must be equal to y.substring(n).length()).private static int
DaciukMihovAutomatonBuilder. convert(Automaton.Builder a, DaciukMihovAutomatonBuilder.State s, java.util.IdentityHashMap<DaciukMihovAutomatonBuilder.State,java.lang.Integer> visited)
Deprecated.Internal recursive traversal for conversion.
-