Package io.rtr.alchemy.filtering
Interface FilterListener
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
FilterBaseListener
public interface FilterListener
extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced by
FilterParser.-
Method Summary
Modifier and TypeMethodDescriptionvoidEnter a parse tree produced byFilterParser.comparison().voidEnter a parse tree produced byFilterParser.constant().voidEnter a parse tree produced byFilterParser.exp().voidEnter a parse tree produced byFilterParser.factor().voidEnter a parse tree produced byFilterParser.term().voidEnter a parse tree produced byFilterParser.value().voidExit a parse tree produced byFilterParser.comparison().voidExit a parse tree produced byFilterParser.constant().voidExit a parse tree produced byFilterParser.exp().voidExit a parse tree produced byFilterParser.factor().voidExit a parse tree produced byFilterParser.term().voidExit a parse tree produced byFilterParser.value().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterExp
Enter a parse tree produced byFilterParser.exp().- Parameters:
ctx- the parse tree
-
exitExp
Exit a parse tree produced byFilterParser.exp().- Parameters:
ctx- the parse tree
-
enterTerm
Enter a parse tree produced byFilterParser.term().- Parameters:
ctx- the parse tree
-
exitTerm
Exit a parse tree produced byFilterParser.term().- Parameters:
ctx- the parse tree
-
enterFactor
Enter a parse tree produced byFilterParser.factor().- Parameters:
ctx- the parse tree
-
exitFactor
Exit a parse tree produced byFilterParser.factor().- Parameters:
ctx- the parse tree
-
enterComparison
Enter a parse tree produced byFilterParser.comparison().- Parameters:
ctx- the parse tree
-
exitComparison
Exit a parse tree produced byFilterParser.comparison().- Parameters:
ctx- the parse tree
-
enterConstant
Enter a parse tree produced byFilterParser.constant().- Parameters:
ctx- the parse tree
-
exitConstant
Exit a parse tree produced byFilterParser.constant().- Parameters:
ctx- the parse tree
-
enterValue
Enter a parse tree produced byFilterParser.value().- Parameters:
ctx- the parse tree
-
exitValue
Exit a parse tree produced byFilterParser.value().- Parameters:
ctx- the parse tree
-