T - The return type of the visit operation. Use Void for
operations with no return type.public class JsonFieldsBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements JsonFieldsVisitor<T>
JsonFieldsVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
JsonFieldsBaseVisitor() |
| Modifier and Type | Method and Description |
|---|---|
T |
visitField_set(JsonFieldsParser.Field_setContext ctx)
Visit a parse tree produced by
JsonFieldsParser.field_set(). |
T |
visitField(JsonFieldsParser.FieldContext ctx)
Visit a parse tree produced by
JsonFieldsParser.field(). |
T |
visitFields_expression(JsonFieldsParser.Fields_expressionContext ctx)
Visit a parse tree produced by
JsonFieldsParser.fields_expression(). |
T |
visitJson_fields(JsonFieldsParser.Json_fieldsContext ctx)
Visit a parse tree produced by
JsonFieldsParser.json_fields(). |
T |
visitNegation(JsonFieldsParser.NegationContext ctx)
Visit a parse tree produced by
JsonFieldsParser.negation(). |
T |
visitQualified_field(JsonFieldsParser.Qualified_fieldContext ctx)
Visit a parse tree produced by
JsonFieldsParser.qualified_field(). |
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalpublic T visitJson_fields(@NotNull JsonFieldsParser.Json_fieldsContext ctx)
JsonFieldsParser.json_fields().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitJson_fields in interface JsonFieldsVisitor<T>ctx - the parse treepublic T visitNegation(@NotNull JsonFieldsParser.NegationContext ctx)
JsonFieldsParser.negation().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitNegation in interface JsonFieldsVisitor<T>ctx - the parse treepublic T visitField_set(@NotNull JsonFieldsParser.Field_setContext ctx)
JsonFieldsParser.field_set().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitField_set in interface JsonFieldsVisitor<T>ctx - the parse treepublic T visitFields_expression(@NotNull JsonFieldsParser.Fields_expressionContext ctx)
JsonFieldsParser.fields_expression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFields_expression in interface JsonFieldsVisitor<T>ctx - the parse treepublic T visitField(@NotNull JsonFieldsParser.FieldContext ctx)
JsonFieldsParser.field().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitField in interface JsonFieldsVisitor<T>ctx - the parse treepublic T visitQualified_field(@NotNull JsonFieldsParser.Qualified_fieldContext ctx)
JsonFieldsParser.qualified_field().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitQualified_field in interface JsonFieldsVisitor<T>ctx - the parse treeCopyright © 2020. All rights reserved.