Package io.trino.plugin.jdbc.expression
Interface ConnectorExpressionPatternVisitor<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:
ConnectorExpressionPatternBaseVisitor,ExpressionPatternBuilder
public interface ConnectorExpressionPatternVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
ConnectorExpressionPatternParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byConnectorExpressionPatternParser.call().Visit a parse tree produced byConnectorExpressionPatternParser.expression().Visit a parse tree produced byConnectorExpressionPatternParser.expressionCapture().Visit a parse tree produced byConnectorExpressionPatternParser.identifier().Visit a parse tree produced byConnectorExpressionPatternParser.number().Visit a parse tree produced byConnectorExpressionPatternParser.standaloneExpression().Visit a parse tree produced byConnectorExpressionPatternParser.standaloneType().Visit a parse tree produced byConnectorExpressionPatternParser.type().Visit a parse tree produced byConnectorExpressionPatternParser.typeParameter().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitStandaloneExpression
Visit a parse tree produced byConnectorExpressionPatternParser.standaloneExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStandaloneType
Visit a parse tree produced byConnectorExpressionPatternParser.standaloneType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpression
Visit a parse tree produced byConnectorExpressionPatternParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCall
Visit a parse tree produced byConnectorExpressionPatternParser.call().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionCapture
Visit a parse tree produced byConnectorExpressionPatternParser.expressionCapture().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitType
Visit a parse tree produced byConnectorExpressionPatternParser.type().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeParameter
Visit a parse tree produced byConnectorExpressionPatternParser.typeParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIdentifier
Visit a parse tree produced byConnectorExpressionPatternParser.identifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumber
Visit a parse tree produced byConnectorExpressionPatternParser.number().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-