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.search Code to search indices.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 voidTokenStreamToAutomaton. addHoles(Automaton.Builder builder, RollingBuffer<TokenStreamToAutomaton.Position> positions, int pos) -
Uses of Automaton.Builder in org.apache.lucene.search
Fields in org.apache.lucene.search declared as Automaton.Builder Modifier and Type Field Description private Automaton.BuilderTermAutomatonQuery. 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.BuilderUTF32ToUTF8. utf8Methods in org.apache.lucene.util.automaton with parameters of type Automaton.Builder Modifier and Type Method Description private static intAutomata. 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 intAutomata. 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 intAutomata. 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 intAutomata. 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 intDaciukMihovAutomatonBuilder. convert(Automaton.Builder a, DaciukMihovAutomatonBuilder.State s, java.util.IdentityHashMap<DaciukMihovAutomatonBuilder.State,java.lang.Integer> visited)Internal recursive traversal for conversion.
-