Uses of Class
org.apache.lucene.util.automaton.RegExp
-
Packages that use RegExp Package Description org.apache.lucene.util.automaton Finite-state automaton for regular expressions. -
-
Uses of RegExp in org.apache.lucene.util.automaton
Fields in org.apache.lucene.util.automaton declared as RegExp Modifier and Type Field Description RegExpRegExp. exp1Child expressions held by a container type expressionRegExpRegExp. exp2Child expressions held by a container type expressionprivate RegExpTooComplexToDeterminizeException. regExpMethods in org.apache.lucene.util.automaton that return RegExp Modifier and Type Method Description RegExpTooComplexToDeterminizeException. getRegExp()Return the RegExp that caused this exception if any.(package private) static RegExpRegExp. makeAnyChar(int flags)(package private) static RegExpRegExp. makeAnyString(int flags)(package private) static RegExpRegExp. makeAutomaton(int flags, java.lang.String s)(package private) static RegExpRegExp. makeChar(int flags, int c)(package private) static RegExpRegExp. makeCharRange(int flags, int from, int to)(package private) static RegExpRegExp. makeComplement(int flags, RegExp exp)(package private) static RegExpRegExp. makeConcatenation(int flags, RegExp exp1, RegExp exp2)(package private) static RegExpRegExp. makeEmpty(int flags)(package private) static RegExpRegExp. makeIntersection(int flags, RegExp exp1, RegExp exp2)(package private) static RegExpRegExp. makeInterval(int flags, int min, int max, int digits)(package private) static RegExpRegExp. makeOptional(int flags, RegExp exp)(package private) static RegExpRegExp. makeRepeat(int flags, RegExp exp)(package private) static RegExpRegExp. makeRepeat(int flags, RegExp exp, int min)(package private) static RegExpRegExp. makeRepeat(int flags, RegExp exp, int min, int max)(package private) static RegExpRegExp. makeString(int flags, java.lang.String s)private static RegExpRegExp. makeString(int flags, RegExp exp1, RegExp exp2)(package private) static RegExpRegExp. makeUnion(int flags, RegExp exp1, RegExp exp2)(package private) static RegExpRegExp. newContainerNode(int flags, RegExp.Kind kind, RegExp exp1, RegExp exp2)(package private) static RegExpRegExp. 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 RegExpRegExp. newRepeatingNode(int flags, RegExp.Kind kind, RegExp exp, int min, int max)(package private) RegExpRegExp. parseCharClass()(package private) RegExpRegExp. parseCharClasses()(package private) RegExpRegExp. parseCharClassExp()(package private) RegExpRegExp. parseComplExp()(package private) RegExpRegExp. parseConcatExp()(package private) RegExpRegExp. parseInterExp()(package private) RegExpRegExp. parseRepeatExp()(package private) RegExpRegExp. parseSimpleExp()(package private) RegExpRegExp. parseUnionExp()Methods in org.apache.lucene.util.automaton with parameters of type RegExp Modifier and Type Method Description private voidRegExp. findLeaves(RegExp exp, RegExp.Kind kind, java.util.List<Automaton> list, java.util.Map<java.lang.String,Automaton> automata, AutomatonProvider automaton_provider, int maxDeterminizedStates)(package private) static RegExpRegExp. makeComplement(int flags, RegExp exp)(package private) static RegExpRegExp. makeConcatenation(int flags, RegExp exp1, RegExp exp2)(package private) static RegExpRegExp. makeIntersection(int flags, RegExp exp1, RegExp exp2)(package private) static RegExpRegExp. makeOptional(int flags, RegExp exp)(package private) static RegExpRegExp. makeRepeat(int flags, RegExp exp)(package private) static RegExpRegExp. makeRepeat(int flags, RegExp exp, int min)(package private) static RegExpRegExp. makeRepeat(int flags, RegExp exp, int min, int max)private static RegExpRegExp. makeString(int flags, RegExp exp1, RegExp exp2)(package private) static RegExpRegExp. makeUnion(int flags, RegExp exp1, RegExp exp2)(package private) static RegExpRegExp. newContainerNode(int flags, RegExp.Kind kind, RegExp exp1, RegExp exp2)(package private) static RegExpRegExp. newRepeatingNode(int flags, RegExp.Kind kind, RegExp exp, int min, int max)Constructors in org.apache.lucene.util.automaton with parameters of type RegExp 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)TooComplexToDeterminizeException(RegExp regExp, TooComplexToDeterminizeException cause)Use this constructor when the RegExp failed to convert to an automaton.
-