T - The return type of the visit operation. Use Void for
operations with no return type.public interface RegexVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
RegexParser.| Modifier and Type | Method and Description |
|---|---|
T |
visitExpression(RegexParser.ExpressionContext ctx)
Visit a parse tree produced by
RegexParser.expression(). |
T |
visitGroup(RegexParser.GroupContext ctx)
Visit a parse tree produced by
RegexParser.group(). |
T |
visitGroup0(RegexParser.Group0Context ctx)
Visit a parse tree produced by
RegexParser.group0(). |
T |
visitGroupN(RegexParser.GroupNContext ctx)
Visit a parse tree produced by
RegexParser.groupN(). |
T |
visitLiteral(RegexParser.LiteralContext ctx)
Visit a parse tree produced by
RegexParser.literal(). |
T |
visitPattern(RegexParser.PatternContext ctx)
Visit a parse tree produced by
RegexParser.pattern(). |
T |
visitSequence(RegexParser.SequenceContext ctx)
Visit a parse tree produced by
RegexParser.sequence(). |
T visitSequence(@NotNull RegexParser.SequenceContext ctx)
RegexParser.sequence().ctx - the parse treeT visitGroupN(@NotNull RegexParser.GroupNContext ctx)
RegexParser.groupN().ctx - the parse treeT visitExpression(@NotNull RegexParser.ExpressionContext ctx)
RegexParser.expression().ctx - the parse treeT visitPattern(@NotNull RegexParser.PatternContext ctx)
RegexParser.pattern().ctx - the parse treeT visitGroup0(@NotNull RegexParser.Group0Context ctx)
RegexParser.group0().ctx - the parse treeT visitLiteral(@NotNull RegexParser.LiteralContext ctx)
RegexParser.literal().ctx - the parse treeT visitGroup(@NotNull RegexParser.GroupContext ctx)
RegexParser.group().ctx - the parse treeCopyright © 2014 Kaazing, Inc. All Rights Reserved.