Class SQLParserBaseVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
SQLParserVisitor<T>,org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
SQLParserVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced by theANY_FUNClabeled alternative inSQLParser.function_call().Visit a parse tree produced bySQLParser.as_column_alias().Visit a parse tree produced bySQLParser.as_table_alias().Visit a parse tree produced bySQLParser.assignment_operator().Visit a parse tree produced bySQLParser.bracket_expression().Visit a parse tree produced bySQLParser.case_expression().Visit a parse tree produced by theCASTlabeled alternative inSQLParser.function_call().Visit a parse tree produced bySQLParser.column_alias().Visit a parse tree produced bySQLParser.column_alias_list().Visit a parse tree produced bySQLParser.column_elem().Visit a parse tree produced bySQLParser.comparison_operator().Visit a parse tree produced bySQLParser.constant().Visit a parse tree produced bySQLParser.constant_expression().Visit a parse tree produced by theCONVERTlabeled alternative inSQLParser.function_call().Visit a parse tree produced by theCOUNTlabeled alternative inSQLParser.function_call().Visit a parse tree produced by theCURRENT_TIMESTAMPlabeled alternative inSQLParser.function_call().Visit a parse tree produced by theCURRENT_USERlabeled alternative inSQLParser.function_call().Visit a parse tree produced bySQLParser.data_type().Visit a parse tree produced by theDATEADDlabeled alternative inSQLParser.function_call().Visit a parse tree produced by theDATEDIFFlabeled alternative inSQLParser.function_call().Visit a parse tree produced by theDATENAMElabeled alternative inSQLParser.function_call().Visit a parse tree produced by theDATEPARTlabeled alternative inSQLParser.function_call().Visit a parse tree produced bySQLParser.derived_table().Visit a parse tree produced bySQLParser.expression().Visit a parse tree produced bySQLParser.expression_elem().Visit a parse tree produced bySQLParser.expression_list().Visit a parse tree produced bySQLParser.full_column_name().Visit a parse tree produced bySQLParser.group_by_item().Visit a parse tree produced bySQLParser.id().Visit a parse tree produced by theIFFlabeled alternative inSQLParser.function_call().Visit a parse tree produced bySQLParser.join_part().Visit a parse tree produced by theMIN_ACTIVE_ROWVERSIONlabeled alternative inSQLParser.function_call().Visit a parse tree produced bySQLParser.null_notnull().Visit a parse tree produced bySQLParser.order_by_clause().Visit a parse tree produced bySQLParser.order_by_expression().Visit a parse tree produced bySQLParser.over_clause().Visit a parse tree produced bySQLParser.parseFrom().Visit a parse tree produced bySQLParser.parseSelectStatement().Visit a parse tree produced bySQLParser.predicate().Visit a parse tree produced bySQLParser.primitive_expression().Visit a parse tree produced bySQLParser.query_expression().Visit a parse tree produced bySQLParser.query_specification().Visit a parse tree produced bySQLParser.row_or_range_clause().Visit a parse tree produced bySQLParser.search_condition().Visit a parse tree produced bySQLParser.search_condition_and().Visit a parse tree produced bySQLParser.search_condition_not().Visit a parse tree produced bySQLParser.select_list().Visit a parse tree produced bySQLParser.select_list_elem().Visit a parse tree produced bySQLParser.select_statement().Visit a parse tree produced by theSESSION_USERlabeled alternative inSQLParser.function_call().Visit a parse tree produced bySQLParser.sign().Visit a parse tree produced bySQLParser.simple_id().Visit a parse tree produced bySQLParser.sql_union().Visit a parse tree produced bySQLParser.subquery().Visit a parse tree produced bySQLParser.switch_search_condition_section().Visit a parse tree produced bySQLParser.switch_section().Visit a parse tree produced by theSYSTEM_USERlabeled alternative inSQLParser.function_call().Visit a parse tree produced bySQLParser.table_alias().Visit a parse tree produced bySQLParser.table_name().Visit a parse tree produced bySQLParser.table_source().Visit a parse tree produced bySQLParser.table_source_item().Visit a parse tree produced bySQLParser.table_source_item_joined().Visit a parse tree produced bySQLParser.table_sources().Visit a parse tree produced bySQLParser.table_value_constructor().Visit a parse tree produced bySQLParser.top_clause().Visit a parse tree produced bySQLParser.top_count().Visit a parse tree produced bySQLParser.top_percent().Visit a parse tree produced bySQLParser.unary_operator_expression().Visit a parse tree produced bySQLParser.window_frame_bound().Visit a parse tree produced bySQLParser.window_frame_extent().Visit a parse tree produced bySQLParser.window_frame_following().Visit a parse tree produced bySQLParser.window_frame_preceding().Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Constructor Details
-
SQLParserBaseVisitor
public SQLParserBaseVisitor()
-
-
Method Details
-
visitParseSelectStatement
Visit a parse tree produced bySQLParser.parseSelectStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitParseSelectStatementin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParseFrom
Visit a parse tree produced bySQLParser.parseFrom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitParseFromin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpression
Visit a parse tree produced bySQLParser.expression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExpressionin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimitive_expression
Visit a parse tree produced bySQLParser.primitive_expression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrimitive_expressionin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCase_expression
Visit a parse tree produced bySQLParser.case_expression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCase_expressionin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnary_operator_expression
Visit a parse tree produced bySQLParser.unary_operator_expression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUnary_operator_expressionin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBracket_expression
Visit a parse tree produced bySQLParser.bracket_expression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBracket_expressionin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstant_expression
Visit a parse tree produced bySQLParser.constant_expression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstant_expressionin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelect_statement
Visit a parse tree produced bySQLParser.select_statement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelect_statementin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubquery
Visit a parse tree produced bySQLParser.subquery().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSubqueryin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSearch_condition
Visit a parse tree produced bySQLParser.search_condition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSearch_conditionin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSearch_condition_and
Visit a parse tree produced bySQLParser.search_condition_and().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSearch_condition_andin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSearch_condition_not
Visit a parse tree produced bySQLParser.search_condition_not().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSearch_condition_notin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPredicate
Visit a parse tree produced bySQLParser.predicate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPredicatein interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQuery_expression
Visit a parse tree produced bySQLParser.query_expression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitQuery_expressionin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSql_union
Visit a parse tree produced bySQLParser.sql_union().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSql_unionin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQuery_specification
Visit a parse tree produced bySQLParser.query_specification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitQuery_specificationin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTop_clause
Visit a parse tree produced bySQLParser.top_clause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTop_clausein interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTop_percent
Visit a parse tree produced bySQLParser.top_percent().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTop_percentin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTop_count
Visit a parse tree produced bySQLParser.top_count().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTop_countin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrder_by_clause
Visit a parse tree produced bySQLParser.order_by_clause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOrder_by_clausein interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrder_by_expression
Visit a parse tree produced bySQLParser.order_by_expression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOrder_by_expressionin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroup_by_item
Visit a parse tree produced bySQLParser.group_by_item().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGroup_by_itemin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelect_list
Visit a parse tree produced bySQLParser.select_list().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelect_listin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumn_elem
Visit a parse tree produced bySQLParser.column_elem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumn_elemin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpression_elem
Visit a parse tree produced bySQLParser.expression_elem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExpression_elemin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelect_list_elem
Visit a parse tree produced bySQLParser.select_list_elem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelect_list_elemin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTable_sources
Visit a parse tree produced bySQLParser.table_sources().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTable_sourcesin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTable_source
Visit a parse tree produced bySQLParser.table_source().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTable_sourcein interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTable_source_item_joined
Visit a parse tree produced bySQLParser.table_source_item_joined().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTable_source_item_joinedin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTable_source_item
Visit a parse tree produced bySQLParser.table_source_item().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTable_source_itemin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJoin_part
Visit a parse tree produced bySQLParser.join_part().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJoin_partin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDerived_table
Visit a parse tree produced bySQLParser.derived_table().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDerived_tablein interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCAST
Visit a parse tree produced by theCASTlabeled alternative inSQLParser.function_call().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCASTin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCONVERT
Visit a parse tree produced by theCONVERTlabeled alternative inSQLParser.function_call().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCONVERTin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCURRENT_TIMESTAMP
Visit a parse tree produced by theCURRENT_TIMESTAMPlabeled alternative inSQLParser.function_call().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCURRENT_TIMESTAMPin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCURRENT_USER
Visit a parse tree produced by theCURRENT_USERlabeled alternative inSQLParser.function_call().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCURRENT_USERin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDATEADD
Visit a parse tree produced by theDATEADDlabeled alternative inSQLParser.function_call().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDATEADDin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDATEDIFF
Visit a parse tree produced by theDATEDIFFlabeled alternative inSQLParser.function_call().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDATEDIFFin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDATENAME
Visit a parse tree produced by theDATENAMElabeled alternative inSQLParser.function_call().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDATENAMEin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDATEPART
Visit a parse tree produced by theDATEPARTlabeled alternative inSQLParser.function_call().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDATEPARTin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMIN_ACTIVE_ROWVERSION
Visit a parse tree produced by theMIN_ACTIVE_ROWVERSIONlabeled alternative inSQLParser.function_call().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMIN_ACTIVE_ROWVERSIONin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSESSION_USER
Visit a parse tree produced by theSESSION_USERlabeled alternative inSQLParser.function_call().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSESSION_USERin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSYSTEM_USER
Visit a parse tree produced by theSYSTEM_USERlabeled alternative inSQLParser.function_call().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSYSTEM_USERin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIFF
Visit a parse tree produced by theIFFlabeled alternative inSQLParser.function_call().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIFFin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCOUNT
Visit a parse tree produced by theCOUNTlabeled alternative inSQLParser.function_call().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCOUNTin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitANY_FUNC
Visit a parse tree produced by theANY_FUNClabeled alternative inSQLParser.function_call().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitANY_FUNCin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSwitch_section
Visit a parse tree produced bySQLParser.switch_section().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSwitch_sectionin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSwitch_search_condition_section
Visit a parse tree produced bySQLParser.switch_search_condition_section().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSwitch_search_condition_sectionin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAs_column_alias
Visit a parse tree produced bySQLParser.as_column_alias().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAs_column_aliasin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAs_table_alias
Visit a parse tree produced bySQLParser.as_table_alias().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAs_table_aliasin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTable_alias
Visit a parse tree produced bySQLParser.table_alias().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTable_aliasin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumn_alias_list
Visit a parse tree produced bySQLParser.column_alias_list().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumn_alias_listin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumn_alias
Visit a parse tree produced bySQLParser.column_alias().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumn_aliasin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTable_value_constructor
Visit a parse tree produced bySQLParser.table_value_constructor().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTable_value_constructorin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpression_list
Visit a parse tree produced bySQLParser.expression_list().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExpression_listin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOver_clause
Visit a parse tree produced bySQLParser.over_clause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOver_clausein interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRow_or_range_clause
Visit a parse tree produced bySQLParser.row_or_range_clause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRow_or_range_clausein interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindow_frame_extent
Visit a parse tree produced bySQLParser.window_frame_extent().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWindow_frame_extentin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindow_frame_bound
Visit a parse tree produced bySQLParser.window_frame_bound().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWindow_frame_boundin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindow_frame_preceding
Visit a parse tree produced bySQLParser.window_frame_preceding().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWindow_frame_precedingin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindow_frame_following
Visit a parse tree produced bySQLParser.window_frame_following().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWindow_frame_followingin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTable_name
Visit a parse tree produced bySQLParser.table_name().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTable_namein interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFull_column_name
Visit a parse tree produced bySQLParser.full_column_name().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFull_column_namein interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNull_notnull
Visit a parse tree produced bySQLParser.null_notnull().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNull_notnullin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitData_type
Visit a parse tree produced bySQLParser.data_type().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitData_typein interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstant
Visit a parse tree produced bySQLParser.constant().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstantin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSign
Visit a parse tree produced bySQLParser.sign().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSignin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitId
Visit a parse tree produced bySQLParser.id().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIdin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimple_id
Visit a parse tree produced bySQLParser.simple_id().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSimple_idin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparison_operator
Visit a parse tree produced bySQLParser.comparison_operator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitComparison_operatorin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignment_operator
Visit a parse tree produced bySQLParser.assignment_operator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAssignment_operatorin interfaceSQLParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-