Package org.idempiere.expression.logic
Interface SimpleBooleanVisitor<T>
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for 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 thebinaryExpression
labeled alternative inSimpleBooleanParser.expression()
.Visit a parse tree produced bySimpleBooleanParser.bool()
.Visit a parse tree produced by theboolExpression
labeled alternative inSimpleBooleanParser.expression()
.Visit a parse tree produced bySimpleBooleanParser.comparator()
.Visit a parse tree produced by thecomparatorExpression
labeled alternative inSimpleBooleanParser.expression()
.Visit a parse tree produced by thecontextVariables
labeled alternative inSimpleBooleanParser.expression()
.Visit a parse tree produced by thedecimalExpression
labeled alternative inSimpleBooleanParser.expression()
.Visit a parse tree produced by thedoubleQuotedCSVText
labeled alternative inSimpleBooleanParser.expression()
.Visit a parse tree produced by thedoubleQuotedText
labeled alternative inSimpleBooleanParser.expression()
.Visit a parse tree produced by thenotExpression
labeled alternative inSimpleBooleanParser.expression()
.Visit a parse tree produced by theparenExpression
labeled alternative inSimpleBooleanParser.expression()
.Visit a parse tree produced bySimpleBooleanParser.parse()
.Visit a parse tree produced by thequotedCSVText
labeled alternative inSimpleBooleanParser.expression()
.Visit a parse tree produced by thequotedText
labeled alternative inSimpleBooleanParser.expression()
.Visit a parse tree produced by thetext
labeled 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 thebinaryExpression
labeled alternative inSimpleBooleanParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDecimalExpression
Visit a parse tree produced by thedecimalExpression
labeled alternative inSimpleBooleanParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitBoolExpression
Visit a parse tree produced by theboolExpression
labeled alternative inSimpleBooleanParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDoubleQuotedCSVText
Visit a parse tree produced by thedoubleQuotedCSVText
labeled alternative inSimpleBooleanParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitContextVariables
Visit a parse tree produced by thecontextVariables
labeled alternative inSimpleBooleanParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitQuotedCSVText
Visit a parse tree produced by thequotedCSVText
labeled alternative inSimpleBooleanParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNotExpression
Visit a parse tree produced by thenotExpression
labeled alternative inSimpleBooleanParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitParenExpression
Visit a parse tree produced by theparenExpression
labeled alternative inSimpleBooleanParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitText
Visit a parse tree produced by thetext
labeled alternative inSimpleBooleanParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitQuotedText
Visit a parse tree produced by thequotedText
labeled alternative inSimpleBooleanParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDoubleQuotedText
Visit a parse tree produced by thedoubleQuotedText
labeled alternative inSimpleBooleanParser.expression()
.- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitComparatorExpression
Visit a parse tree produced by thecomparatorExpression
labeled 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
-