Package org.javacc.parser
Class RRepetitionRange
- java.lang.Object
-
- org.javacc.parser.Expansion
-
- org.javacc.parser.RegularExpression
-
- org.javacc.parser.RRepetitionRange
-
public class RRepetitionRange extends RegularExpression
Describes one-or-more regular expressions ().
-
-
Field Summary
Fields Modifier and Type Field Description boolean
hasMax
int
max
int
min
RegularExpression
regexpr
The regular expression which is repeated one or more times.-
Fields inherited from class org.javacc.parser.RegularExpression
label, lhsTokens, private_rexp, rhsToken, tpContext
-
Fields inherited from class org.javacc.parser.Expansion
eol, inMinimumSize, myGeneration, nextGenerationIndex, parent
-
-
Constructor Summary
Constructors Constructor Description RRepetitionRange()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Nfa
GenerateNfa(boolean ignoreCase)
-
Methods inherited from class org.javacc.parser.RegularExpression
CanMatchAnyChar, dump
-
Methods inherited from class org.javacc.parser.Expansion
dumpPrefix, hashCode, reInit, toString
-
-
-
-
Field Detail
-
regexpr
public RegularExpression regexpr
The regular expression which is repeated one or more times.
-
min
public int min
-
max
public int max
-
hasMax
public boolean hasMax
-
-
Method Detail
-
GenerateNfa
public Nfa GenerateNfa(boolean ignoreCase)
- Specified by:
GenerateNfa
in classRegularExpression
-
-