T - The return type of the visit operation. Use Void for
operations with no return type.public class CqlTypesBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements CqlTypesVisitor<T>
CqlTypesVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
CqlTypesBaseVisitor() |
| Modifier and Type | Method and Description |
|---|---|
T |
visitData_type(CqlTypesParser.Data_typeContext ctx)
Visit a parse tree produced by
CqlTypesParser.data_type(). |
T |
visitList_type(CqlTypesParser.List_typeContext ctx)
Visit a parse tree produced by
CqlTypesParser.list_type(). |
T |
visitMap_type(CqlTypesParser.Map_typeContext ctx)
Visit a parse tree produced by
CqlTypesParser.map_type(). |
T |
visitNative_type(CqlTypesParser.Native_typeContext ctx)
Visit a parse tree produced by
CqlTypesParser.native_type(). |
T |
visitSet_type(CqlTypesParser.Set_typeContext ctx)
Visit a parse tree produced by
CqlTypesParser.set_type(). |
T |
visitTuple_type(CqlTypesParser.Tuple_typeContext ctx)
Visit a parse tree produced by
CqlTypesParser.tuple_type(). |
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalpublic T visitList_type(@NotNull CqlTypesParser.List_typeContext ctx)
CqlTypesParser.list_type().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitList_type in interface CqlTypesVisitor<T>ctx - the parse treepublic T visitMap_type(@NotNull CqlTypesParser.Map_typeContext ctx)
CqlTypesParser.map_type().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitMap_type in interface CqlTypesVisitor<T>ctx - the parse treepublic T visitNative_type(@NotNull CqlTypesParser.Native_typeContext ctx)
CqlTypesParser.native_type().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitNative_type in interface CqlTypesVisitor<T>ctx - the parse treepublic T visitData_type(@NotNull CqlTypesParser.Data_typeContext ctx)
CqlTypesParser.data_type().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitData_type in interface CqlTypesVisitor<T>ctx - the parse treepublic T visitSet_type(@NotNull CqlTypesParser.Set_typeContext ctx)
CqlTypesParser.set_type().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSet_type in interface CqlTypesVisitor<T>ctx - the parse treepublic T visitTuple_type(@NotNull CqlTypesParser.Tuple_typeContext ctx)
CqlTypesParser.tuple_type().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTuple_type in interface CqlTypesVisitor<T>ctx - the parse tree