Uses of Class
org.javacc.parser.RegularExpression
-
Packages that use RegularExpression Package Description org.javacc.jjdoc Generates BNF documentation from a grammar.org.javacc.parser A grammar and lexer generator. -
-
Uses of RegularExpression in org.javacc.jjdoc
Methods in org.javacc.jjdoc with parameters of type RegularExpression Modifier and Type Method Description private static voidJJDoc. emitExpansionRegularExpression(RegularExpression r, Generator gen, JJDocContext context)static java.lang.StringJJDoc. emitRE(RegularExpression re, JJDocContext context)voidBNFGenerator. reEnd(RegularExpression r)voidGenerator. reEnd(RegularExpression re)Output end of regular expression.voidHTMLGenerator. reEnd(RegularExpression r)voidJCCGenerator. reEnd(RegularExpression re)voidTextGenerator. reEnd(RegularExpression r)Output end of regular expression.voidXTextGenerator. reEnd(RegularExpression r)voidBNFGenerator. reStart(RegularExpression r)voidGenerator. reStart(RegularExpression re)Output start of regular expression.voidHTMLGenerator. reStart(RegularExpression r)voidJCCGenerator. reStart(RegularExpression re)voidTextGenerator. reStart(RegularExpression r)Output start of regular expression.voidXTextGenerator. reStart(RegularExpression r) -
Uses of RegularExpression in org.javacc.parser
Subclasses of RegularExpression in org.javacc.parser Modifier and Type Class Description classRCharacterListDescribes character lists.classRChoiceDescribes regular expressions which are choices from from among included regular expressions.classREndOfFileDescribes the EOF regular expressionclassRJustNameDescribes regular expressions which are referred to just by their name.classROneOrMoreDescribes one-or-more regular expressions (). classRRepetitionRangeDescribes one-or-more regular expressions (). classRSequenceDescribes regular expressions which are sequences of other regular expressions.classRStringLiteralDescribes string literals.classRZeroOrMoreDescribes zero-or-more regular expressions (). classRZeroOrOneDescribes zero-or-one regular expressions (). Fields in org.javacc.parser declared as RegularExpression Modifier and Type Field Description (package private) RegularExpressionLexerContext. curREprivate static RegularExpressionSemanticize. other(package private) RegularExpressionRJustName. regexpr"regexpr" points to the regular expression denoted by the name.RegularExpressionROneOrMore. regexprThe regular expression which is repeated one or more times.RegularExpressionRRepetitionRange. regexprThe regular expression which is repeated one or more times.RegularExpressionRZeroOrMore. regexprThe regular expression which is repeated zero or more times.RegularExpressionRZeroOrOne. regexprThe regular expression which is repeated zero or one times.RegularExpressionRegExprSpec. rexpThe regular expression of this specification.private RegularExpression[]LexGen. rexprsprivate RegularExpressionSemanticize.FixRJustNames. rootFields in org.javacc.parser with type parameters of type RegularExpression Modifier and Type Field Description private java.util.List<RegularExpression>RChoice. choicesThe list of choices of this regular expression.(package private) java.util.Map<java.lang.String,RegularExpression>JavaCCGlobals. named_tokens_tableThis is a symbol table that contains all named tokens (those that are defined with a label).java.util.List<RegularExpression>JavaCCGlobals. ordered_named_tokensContains the same entries as "named_tokens_table", but this is an ordered list which is ordered by the order of appearance in the input file.java.util.Map<java.lang.Integer,RegularExpression>JavaCCGlobals. rexps_of_tokensA mapping of ordinal values (represented as objects of type "Integer") to the corresponding RegularExpression's.(package private) java.util.Hashtable<java.lang.String,java.util.Hashtable<java.lang.String,java.util.Hashtable<java.lang.String,RegularExpression>>>JavaCCGlobals. simple_tokens_tableThis is a three-level symbol table that contains all simple tokens (those that are defined using a single string (with or without a label).java.util.List<RegularExpression>RSequence. unitsThe list of units in this regular expression sequence.Methods in org.javacc.parser that return types with arguments of type RegularExpression Modifier and Type Method Description java.util.List<RegularExpression>RChoice. getChoices()Methods in org.javacc.parser with parameters of type RegularExpression Modifier and Type Method Description protected voidJavaCCParserInternals. add_inline_regexpr(RegularExpression r)private static booleanSemanticize. rexpWalk(RegularExpression rexp, Context context)Method parameters in org.javacc.parser with type arguments of type RegularExpression Modifier and Type Method Description voidJavaCCParser. complex_regular_expression(Container<RegularExpression> c1)voidJavaCCParser. complex_regular_expression_choices(Container<RegularExpression> c1)voidJavaCCParser. complex_regular_expression_unit(Container<RegularExpression> c)private static booleanSemanticize. hasIgnoreCase(java.util.Hashtable<java.lang.String,RegularExpression> table, java.lang.String str)voidJavaCCParser. regular_expression(Container<RegularExpression> c)voidRChoice. setChoices(java.util.List<RegularExpression> choices)Constructors in org.javacc.parser with parameters of type RegularExpression Constructor Description ROneOrMore(Token t, RegularExpression re)RZeroOrMore(Token t, RegularExpression r)Constructor parameters in org.javacc.parser with type arguments of type RegularExpression Constructor Description RSequence(java.util.List<RegularExpression> seq)
-