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 byKeyValueParser.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TvisitKey(KeyValueParser.KeyContext ctx)Visit a parse tree produced byKeyValueParser.key().TvisitKeyValue(KeyValueParser.KeyValueContext ctx)Visit a parse tree produced byKeyValueParser.keyValue().TvisitKeyValueList(KeyValueParser.KeyValueListContext ctx)Visit a parse tree produced byKeyValueParser.keyValueList().TvisitParse(KeyValueParser.ParseContext ctx)Visit a parse tree produced byKeyValueParser.parse().TvisitValue(KeyValueParser.ValueContext ctx)Visit a parse tree produced byKeyValueParser.value().
-
-
-
Method Detail
-
visitParse
T visitParse(KeyValueParser.ParseContext ctx)
Visit a parse tree produced byKeyValueParser.parse().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyValueList
T visitKeyValueList(KeyValueParser.KeyValueListContext ctx)
Visit a parse tree produced byKeyValueParser.keyValueList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyValue
T visitKeyValue(KeyValueParser.KeyValueContext ctx)
Visit a parse tree produced byKeyValueParser.keyValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKey
T visitKey(KeyValueParser.KeyContext ctx)
Visit a parse tree produced byKeyValueParser.key().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValue
T visitValue(KeyValueParser.ValueContext ctx)
Visit a parse tree produced byKeyValueParser.value().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-