Package org.idempiere.expression.logic
Interface SimpleBooleanVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
EvaluationVisitor,SimpleBooleanBaseVisitor
public interface SimpleBooleanVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
SimpleBooleanParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced bySimpleBooleanParser.binary().Visit a parse tree produced by thebinaryExpressionlabeled alternative inSimpleBooleanParser.expression().Visit a parse tree produced bySimpleBooleanParser.bool().Visit a parse tree produced by theboolExpressionlabeled alternative inSimpleBooleanParser.expression().Visit a parse tree produced bySimpleBooleanParser.comparator().Visit a parse tree produced by thecomparatorExpressionlabeled alternative inSimpleBooleanParser.expression().Visit a parse tree produced by thecontextVariableslabeled alternative inSimpleBooleanParser.expression().Visit a parse tree produced by thedecimalExpressionlabeled alternative inSimpleBooleanParser.expression().Visit a parse tree produced by thedoubleQuotedCSVTextlabeled alternative inSimpleBooleanParser.expression().Visit a parse tree produced by thedoubleQuotedTextlabeled alternative inSimpleBooleanParser.expression().Visit a parse tree produced by thenotExpressionlabeled alternative inSimpleBooleanParser.expression().Visit a parse tree produced by theparenExpressionlabeled alternative inSimpleBooleanParser.expression().Visit a parse tree produced bySimpleBooleanParser.parse().Visit a parse tree produced by thequotedCSVTextlabeled alternative inSimpleBooleanParser.expression().Visit a parse tree produced by thequotedTextlabeled alternative inSimpleBooleanParser.expression().Visit a parse tree produced by thetextlabeled alternative inSimpleBooleanParser.expression().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitParse
Visit a parse tree produced bySimpleBooleanParser.parse().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryExpression
Visit a parse tree produced by thebinaryExpressionlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDecimalExpression
Visit a parse tree produced by thedecimalExpressionlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBoolExpression
Visit a parse tree produced by theboolExpressionlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDoubleQuotedCSVText
Visit a parse tree produced by thedoubleQuotedCSVTextlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitContextVariables
Visit a parse tree produced by thecontextVariableslabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQuotedCSVText
Visit a parse tree produced by thequotedCSVTextlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNotExpression
Visit a parse tree produced by thenotExpressionlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParenExpression
Visit a parse tree produced by theparenExpressionlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitText
Visit a parse tree produced by thetextlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQuotedText
Visit a parse tree produced by thequotedTextlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDoubleQuotedText
Visit a parse tree produced by thedoubleQuotedTextlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparatorExpression
Visit a parse tree produced by thecomparatorExpressionlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparator
Visit a parse tree produced bySimpleBooleanParser.comparator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinary
Visit a parse tree produced bySimpleBooleanParser.binary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBool
Visit a parse tree produced bySimpleBooleanParser.bool().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-