Uses of Class
org.apache.lucene.util.automaton.Automaton.Builder
Packages that use Automaton.Builder
Package
Description
Text analysis.
This package contains a flexible graph-based proximity query, TermAutomatonQuery, and geospatial
queries.
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.BuilderModifier and TypeMethodDescriptionprivate static voidTokenStreamToAutomaton.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 -
Uses of Automaton.Builder in org.apache.lucene.util.automaton
Fields in org.apache.lucene.util.automaton declared as Automaton.BuilderMethods in org.apache.lucene.util.automaton with parameters of type Automaton.BuilderModifier and TypeMethodDescriptionprivate static intAutomata.anyOfRightLength(Automaton.Builder builder, String x, int n) Constructs sub-automaton corresponding to decimal numbers of length x.substring(n).length().private static intAutomata.atLeast(Automaton.Builder builder, String x, int n, Collection<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, 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, String x, String y, int n, Collection<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, IdentityHashMap<DaciukMihovAutomatonBuilder.State, Integer> visited) Deprecated.Internal recursive traversal for conversion.