Interface HdbschemaVisitor<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:
HdbschemaBaseVisitor
public interface HdbschemaVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
HdbschemaParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byHdbschemaParser.hdbschemaDefinition().Visit a parse tree produced byHdbschemaParser.schemaNameProp().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitHdbschemaDefinition
Visit a parse tree produced byHdbschemaParser.hdbschemaDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaNameProp
Visit a parse tree produced byHdbschemaParser.schemaNameProp().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-