Uses of Class
org.apache.lucene.util.automaton.RegExp.Kind
-
Packages that use RegExp.Kind Package Description org.apache.lucene.util.automaton Finite-state automaton for regular expressions. -
-
Uses of RegExp.Kind in org.apache.lucene.util.automaton
Fields in org.apache.lucene.util.automaton declared as RegExp.Kind Modifier and Type Field Description RegExp.Kind
RegExp. kind
The type of expressionMethods in org.apache.lucene.util.automaton that return RegExp.Kind Modifier and Type Method Description static RegExp.Kind
RegExp.Kind. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RegExp.Kind[]
RegExp.Kind. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.lucene.util.automaton with parameters of type RegExp.Kind 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 determinizeWorkLimit)
(package private) static RegExp
RegExp. newContainerNode(int flags, RegExp.Kind kind, RegExp exp1, RegExp exp2)
(package private) static RegExp
RegExp. newLeafNode(int flags, RegExp.Kind kind, java.lang.String s, int c, int min, int max, int digits, int from, int to)
(package private) static RegExp
RegExp. newRepeatingNode(int flags, RegExp.Kind kind, RegExp exp, int min, int max)
Constructors in org.apache.lucene.util.automaton with parameters of type RegExp.Kind Constructor Description RegExp(int flags, RegExp.Kind kind, RegExp exp1, RegExp exp2, java.lang.String s, int c, int min, int max, int digits, int from, int to)
-