Interface KeyValueVisitor<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:
KeyValueBaseVisitor
public interface KeyValueVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
KeyValueParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byKeyValueParser.key().Visit a parse tree produced byKeyValueParser.keyValue().Visit a parse tree produced byKeyValueParser.keyValueList().Visit a parse tree produced byKeyValueParser.parse().Visit a parse tree produced byKeyValueParser.value().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitParse
Visit a parse tree produced byKeyValueParser.parse().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyValueList
Visit a parse tree produced byKeyValueParser.keyValueList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyValue
Visit a parse tree produced byKeyValueParser.keyValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKey
Visit a parse tree produced byKeyValueParser.key().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValue
Visit a parse tree produced byKeyValueParser.value().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-