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.
|
Modifier and Type | Method and Description |
---|---|
private static void |
TokenStreamToAutomaton.addHoles(Automaton.Builder builder,
RollingBuffer<TokenStreamToAutomaton.Position> positions,
int pos) |
Modifier and Type | Field and Description |
---|---|
private Automaton.Builder |
TermAutomatonQuery.builder |
Modifier and Type | Field and Description |
---|---|
(package private) Automaton.Builder |
UTF32ToUTF8.utf8 |
Modifier and Type | Method and 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)
Internal recursive traversal for conversion.
|