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 bySimpleBooleanParser.
-
-
Method Summary
-
-
-
Method Detail
-
visitParse
T visitParse(SimpleBooleanParser.ParseContext ctx)
Visit a parse tree produced bySimpleBooleanParser.parse().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryExpression
T visitBinaryExpression(SimpleBooleanParser.BinaryExpressionContext ctx)
Visit a parse tree produced by thebinaryExpressionlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDecimalExpression
T visitDecimalExpression(SimpleBooleanParser.DecimalExpressionContext ctx)
Visit a parse tree produced by thedecimalExpressionlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBoolExpression
T visitBoolExpression(SimpleBooleanParser.BoolExpressionContext ctx)
Visit a parse tree produced by theboolExpressionlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitContextVariables
T visitContextVariables(SimpleBooleanParser.ContextVariablesContext ctx)
Visit a parse tree produced by thecontextVariableslabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNotExpression
T visitNotExpression(SimpleBooleanParser.NotExpressionContext ctx)
Visit a parse tree produced by thenotExpressionlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParenExpression
T visitParenExpression(SimpleBooleanParser.ParenExpressionContext ctx)
Visit a parse tree produced by theparenExpressionlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitText
T visitText(SimpleBooleanParser.TextContext ctx)
Visit a parse tree produced by thetextlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQuotedText
T visitQuotedText(SimpleBooleanParser.QuotedTextContext ctx)
Visit a parse tree produced by thequotedTextlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDoubleQuotedText
T visitDoubleQuotedText(SimpleBooleanParser.DoubleQuotedTextContext ctx)
Visit a parse tree produced by thedoubleQuotedTextlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparatorExpression
T visitComparatorExpression(SimpleBooleanParser.ComparatorExpressionContext ctx)
Visit a parse tree produced by thecomparatorExpressionlabeled alternative inSimpleBooleanParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparator
T visitComparator(SimpleBooleanParser.ComparatorContext ctx)
Visit a parse tree produced bySimpleBooleanParser.comparator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinary
T visitBinary(SimpleBooleanParser.BinaryContext ctx)
Visit a parse tree produced bySimpleBooleanParser.binary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBool
T visitBool(SimpleBooleanParser.BoolContext ctx)
Visit a parse tree produced bySimpleBooleanParser.bool().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-