Uses of Interface
org.apache.lucene.util.automaton.AutomatonProvider
-
Packages that use AutomatonProvider Package Description org.apache.lucene.search Code to search indices.org.apache.lucene.util.automaton Finite-state automaton for regular expressions. -
-
Uses of AutomatonProvider in org.apache.lucene.search
Fields in org.apache.lucene.search declared as AutomatonProvider Modifier and Type Field Description private static AutomatonProvider
RegexpQuery. defaultProvider
A provider that provides no named automataConstructors in org.apache.lucene.search with parameters of type AutomatonProvider Constructor Description RegexpQuery(Term term, int flags, AutomatonProvider provider, int maxDeterminizedStates)
Constructs a query for terms matchingterm
. -
Uses of AutomatonProvider in org.apache.lucene.util.automaton
Methods in org.apache.lucene.util.automaton with parameters of type AutomatonProvider Modifier and Type Method Description private void
RegExp. findLeaves(RegExp exp, RegExp.Kind kind, java.util.List<Automaton> list, java.util.Map<java.lang.String,Automaton> automata, AutomatonProvider automaton_provider, int maxDeterminizedStates)
private Automaton
RegExp. toAutomaton(java.util.Map<java.lang.String,Automaton> automata, AutomatonProvider automaton_provider, int maxDeterminizedStates)
Automaton
RegExp. toAutomaton(AutomatonProvider automaton_provider, int maxDeterminizedStates)
Constructs newAutomaton
from thisRegExp
.private Automaton
RegExp. toAutomatonInternal(java.util.Map<java.lang.String,Automaton> automata, AutomatonProvider automaton_provider, int maxDeterminizedStates)
-