Class JDQLBaseListener
- All Implemented Interfaces:
JDQLListener
,org.antlr.v4.runtime.tree.ParseTreeListener
JDQLListener
,
which can be extended to create a listener which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Enter a parse tree produced byJDQLParser.aggregate_expression()
.void
Enter a parse tree produced byJDQLParser.between_expression()
.void
Enter a parse tree produced byJDQLParser.comparison_expression()
.void
Enter a parse tree produced byJDQLParser.comparison_operator()
.void
Enter a parse tree produced byJDQLParser.conditional_expression()
.void
Enter a parse tree produced byJDQLParser.delete_statement()
.void
Enter a parse tree produced byJDQLParser.entity_name()
.void
Enter a parse tree produced byJDQLParser.enum_literal()
.void
enterEveryRule
(org.antlr.v4.runtime.ParserRuleContext ctx) void
Enter a parse tree produced byJDQLParser.from_clause()
.void
Enter a parse tree produced byJDQLParser.function_expression()
.void
Enter a parse tree produced byJDQLParser.in_expression()
.void
Enter a parse tree produced byJDQLParser.in_item()
.void
Enter a parse tree produced byJDQLParser.input_parameter()
.void
Enter a parse tree produced byJDQLParser.like_expression()
.void
Enter a parse tree produced byJDQLParser.literal()
.void
Enter a parse tree produced byJDQLParser.null_comparison_expression()
.void
Enter a parse tree produced byJDQLParser.orderby_clause()
.void
Enter a parse tree produced byJDQLParser.orderby_item()
.void
Enter a parse tree produced byJDQLParser.primary_expression()
.void
Enter a parse tree produced byJDQLParser.scalar_expression()
.void
Enter a parse tree produced byJDQLParser.select_clause()
.void
Enter a parse tree produced byJDQLParser.select_list()
.void
Enter a parse tree produced byJDQLParser.select_statement()
.void
Enter a parse tree produced byJDQLParser.set_clause()
.void
Enter a parse tree produced byJDQLParser.special_expression()
.void
Enter a parse tree produced byJDQLParser.state_field_path_expression()
.void
Enter a parse tree produced byJDQLParser.statement()
.void
Enter a parse tree produced byJDQLParser.update_item()
.void
Enter a parse tree produced byJDQLParser.update_statement()
.void
Enter a parse tree produced byJDQLParser.where_clause()
.void
Exit a parse tree produced byJDQLParser.aggregate_expression()
.void
Exit a parse tree produced byJDQLParser.between_expression()
.void
Exit a parse tree produced byJDQLParser.comparison_expression()
.void
Exit a parse tree produced byJDQLParser.comparison_operator()
.void
Exit a parse tree produced byJDQLParser.conditional_expression()
.void
Exit a parse tree produced byJDQLParser.delete_statement()
.void
Exit a parse tree produced byJDQLParser.entity_name()
.void
Exit a parse tree produced byJDQLParser.enum_literal()
.void
exitEveryRule
(org.antlr.v4.runtime.ParserRuleContext ctx) void
Exit a parse tree produced byJDQLParser.from_clause()
.void
Exit a parse tree produced byJDQLParser.function_expression()
.void
Exit a parse tree produced byJDQLParser.in_expression()
.void
Exit a parse tree produced byJDQLParser.in_item()
.void
Exit a parse tree produced byJDQLParser.input_parameter()
.void
Exit a parse tree produced byJDQLParser.like_expression()
.void
Exit a parse tree produced byJDQLParser.literal()
.void
Exit a parse tree produced byJDQLParser.null_comparison_expression()
.void
Exit a parse tree produced byJDQLParser.orderby_clause()
.void
Exit a parse tree produced byJDQLParser.orderby_item()
.void
Exit a parse tree produced byJDQLParser.primary_expression()
.void
Exit a parse tree produced byJDQLParser.scalar_expression()
.void
Exit a parse tree produced byJDQLParser.select_clause()
.void
Exit a parse tree produced byJDQLParser.select_list()
.void
Exit a parse tree produced byJDQLParser.select_statement()
.void
Exit a parse tree produced byJDQLParser.set_clause()
.void
Exit a parse tree produced byJDQLParser.special_expression()
.void
Exit a parse tree produced byJDQLParser.state_field_path_expression()
.void
Exit a parse tree produced byJDQLParser.statement()
.void
Exit a parse tree produced byJDQLParser.update_item()
.void
Exit a parse tree produced byJDQLParser.update_statement()
.void
Exit a parse tree produced byJDQLParser.where_clause()
.void
visitErrorNode
(org.antlr.v4.runtime.tree.ErrorNode node) void
visitTerminal
(org.antlr.v4.runtime.tree.TerminalNode node)
-
Constructor Details
-
JDQLBaseListener
public JDQLBaseListener()
-
-
Method Details
-
enterStatement
Enter a parse tree produced byJDQLParser.statement()
.The default implementation does nothing.
- Specified by:
enterStatement
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitStatement
Exit a parse tree produced byJDQLParser.statement()
.The default implementation does nothing.
- Specified by:
exitStatement
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterSelect_statement
Enter a parse tree produced byJDQLParser.select_statement()
.The default implementation does nothing.
- Specified by:
enterSelect_statement
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitSelect_statement
Exit a parse tree produced byJDQLParser.select_statement()
.The default implementation does nothing.
- Specified by:
exitSelect_statement
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterUpdate_statement
Enter a parse tree produced byJDQLParser.update_statement()
.The default implementation does nothing.
- Specified by:
enterUpdate_statement
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitUpdate_statement
Exit a parse tree produced byJDQLParser.update_statement()
.The default implementation does nothing.
- Specified by:
exitUpdate_statement
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterDelete_statement
Enter a parse tree produced byJDQLParser.delete_statement()
.The default implementation does nothing.
- Specified by:
enterDelete_statement
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitDelete_statement
Exit a parse tree produced byJDQLParser.delete_statement()
.The default implementation does nothing.
- Specified by:
exitDelete_statement
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterFrom_clause
Enter a parse tree produced byJDQLParser.from_clause()
.The default implementation does nothing.
- Specified by:
enterFrom_clause
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitFrom_clause
Exit a parse tree produced byJDQLParser.from_clause()
.The default implementation does nothing.
- Specified by:
exitFrom_clause
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterWhere_clause
Enter a parse tree produced byJDQLParser.where_clause()
.The default implementation does nothing.
- Specified by:
enterWhere_clause
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitWhere_clause
Exit a parse tree produced byJDQLParser.where_clause()
.The default implementation does nothing.
- Specified by:
exitWhere_clause
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterSet_clause
Enter a parse tree produced byJDQLParser.set_clause()
.The default implementation does nothing.
- Specified by:
enterSet_clause
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitSet_clause
Exit a parse tree produced byJDQLParser.set_clause()
.The default implementation does nothing.
- Specified by:
exitSet_clause
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterUpdate_item
Enter a parse tree produced byJDQLParser.update_item()
.The default implementation does nothing.
- Specified by:
enterUpdate_item
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitUpdate_item
Exit a parse tree produced byJDQLParser.update_item()
.The default implementation does nothing.
- Specified by:
exitUpdate_item
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterSelect_clause
Enter a parse tree produced byJDQLParser.select_clause()
.The default implementation does nothing.
- Specified by:
enterSelect_clause
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitSelect_clause
Exit a parse tree produced byJDQLParser.select_clause()
.The default implementation does nothing.
- Specified by:
exitSelect_clause
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterSelect_list
Enter a parse tree produced byJDQLParser.select_list()
.The default implementation does nothing.
- Specified by:
enterSelect_list
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitSelect_list
Exit a parse tree produced byJDQLParser.select_list()
.The default implementation does nothing.
- Specified by:
exitSelect_list
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterAggregate_expression
Enter a parse tree produced byJDQLParser.aggregate_expression()
.The default implementation does nothing.
- Specified by:
enterAggregate_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitAggregate_expression
Exit a parse tree produced byJDQLParser.aggregate_expression()
.The default implementation does nothing.
- Specified by:
exitAggregate_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterOrderby_clause
Enter a parse tree produced byJDQLParser.orderby_clause()
.The default implementation does nothing.
- Specified by:
enterOrderby_clause
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitOrderby_clause
Exit a parse tree produced byJDQLParser.orderby_clause()
.The default implementation does nothing.
- Specified by:
exitOrderby_clause
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterOrderby_item
Enter a parse tree produced byJDQLParser.orderby_item()
.The default implementation does nothing.
- Specified by:
enterOrderby_item
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitOrderby_item
Exit a parse tree produced byJDQLParser.orderby_item()
.The default implementation does nothing.
- Specified by:
exitOrderby_item
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterConditional_expression
Enter a parse tree produced byJDQLParser.conditional_expression()
.The default implementation does nothing.
- Specified by:
enterConditional_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitConditional_expression
Exit a parse tree produced byJDQLParser.conditional_expression()
.The default implementation does nothing.
- Specified by:
exitConditional_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterComparison_expression
Enter a parse tree produced byJDQLParser.comparison_expression()
.The default implementation does nothing.
- Specified by:
enterComparison_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitComparison_expression
Exit a parse tree produced byJDQLParser.comparison_expression()
.The default implementation does nothing.
- Specified by:
exitComparison_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterComparison_operator
Enter a parse tree produced byJDQLParser.comparison_operator()
.The default implementation does nothing.
- Specified by:
enterComparison_operator
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitComparison_operator
Exit a parse tree produced byJDQLParser.comparison_operator()
.The default implementation does nothing.
- Specified by:
exitComparison_operator
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterBetween_expression
Enter a parse tree produced byJDQLParser.between_expression()
.The default implementation does nothing.
- Specified by:
enterBetween_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitBetween_expression
Exit a parse tree produced byJDQLParser.between_expression()
.The default implementation does nothing.
- Specified by:
exitBetween_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterLike_expression
Enter a parse tree produced byJDQLParser.like_expression()
.The default implementation does nothing.
- Specified by:
enterLike_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitLike_expression
Exit a parse tree produced byJDQLParser.like_expression()
.The default implementation does nothing.
- Specified by:
exitLike_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterIn_expression
Enter a parse tree produced byJDQLParser.in_expression()
.The default implementation does nothing.
- Specified by:
enterIn_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitIn_expression
Exit a parse tree produced byJDQLParser.in_expression()
.The default implementation does nothing.
- Specified by:
exitIn_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterIn_item
Enter a parse tree produced byJDQLParser.in_item()
.The default implementation does nothing.
- Specified by:
enterIn_item
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitIn_item
Exit a parse tree produced byJDQLParser.in_item()
.The default implementation does nothing.
- Specified by:
exitIn_item
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterNull_comparison_expression
Enter a parse tree produced byJDQLParser.null_comparison_expression()
.The default implementation does nothing.
- Specified by:
enterNull_comparison_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitNull_comparison_expression
Exit a parse tree produced byJDQLParser.null_comparison_expression()
.The default implementation does nothing.
- Specified by:
exitNull_comparison_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterScalar_expression
Enter a parse tree produced byJDQLParser.scalar_expression()
.The default implementation does nothing.
- Specified by:
enterScalar_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitScalar_expression
Exit a parse tree produced byJDQLParser.scalar_expression()
.The default implementation does nothing.
- Specified by:
exitScalar_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterPrimary_expression
Enter a parse tree produced byJDQLParser.primary_expression()
.The default implementation does nothing.
- Specified by:
enterPrimary_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitPrimary_expression
Exit a parse tree produced byJDQLParser.primary_expression()
.The default implementation does nothing.
- Specified by:
exitPrimary_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterFunction_expression
Enter a parse tree produced byJDQLParser.function_expression()
.The default implementation does nothing.
- Specified by:
enterFunction_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitFunction_expression
Exit a parse tree produced byJDQLParser.function_expression()
.The default implementation does nothing.
- Specified by:
exitFunction_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterSpecial_expression
Enter a parse tree produced byJDQLParser.special_expression()
.The default implementation does nothing.
- Specified by:
enterSpecial_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitSpecial_expression
Exit a parse tree produced byJDQLParser.special_expression()
.The default implementation does nothing.
- Specified by:
exitSpecial_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterState_field_path_expression
Enter a parse tree produced byJDQLParser.state_field_path_expression()
.The default implementation does nothing.
- Specified by:
enterState_field_path_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitState_field_path_expression
Exit a parse tree produced byJDQLParser.state_field_path_expression()
.The default implementation does nothing.
- Specified by:
exitState_field_path_expression
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterEntity_name
Enter a parse tree produced byJDQLParser.entity_name()
.The default implementation does nothing.
- Specified by:
enterEntity_name
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitEntity_name
Exit a parse tree produced byJDQLParser.entity_name()
.The default implementation does nothing.
- Specified by:
exitEntity_name
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterEnum_literal
Enter a parse tree produced byJDQLParser.enum_literal()
.The default implementation does nothing.
- Specified by:
enterEnum_literal
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitEnum_literal
Exit a parse tree produced byJDQLParser.enum_literal()
.The default implementation does nothing.
- Specified by:
exitEnum_literal
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterInput_parameter
Enter a parse tree produced byJDQLParser.input_parameter()
.The default implementation does nothing.
- Specified by:
enterInput_parameter
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitInput_parameter
Exit a parse tree produced byJDQLParser.input_parameter()
.The default implementation does nothing.
- Specified by:
exitInput_parameter
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterLiteral
Enter a parse tree produced byJDQLParser.literal()
.The default implementation does nothing.
- Specified by:
enterLiteral
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
exitLiteral
Exit a parse tree produced byJDQLParser.literal()
.The default implementation does nothing.
- Specified by:
exitLiteral
in interfaceJDQLListener
- Parameters:
ctx
- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
enterEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx) The default implementation does nothing.
- Specified by:
exitEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node) The default implementation does nothing.
- Specified by:
visitTerminal
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node) The default implementation does nothing.
- Specified by:
visitErrorNode
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-