Interface TomlParserVisitor<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:
TomlParserBaseVisitor,TomlParserVisitor
public interface TomlParserVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
TomlParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byTomlParser.array().Visit a parse tree produced byTomlParser.arrayTable().Visit a parse tree produced byTomlParser.bool().Visit a parse tree produced byTomlParser.comment().Visit a parse tree produced byTomlParser.commentOrNl().Visit a parse tree produced byTomlParser.dateTime().Visit a parse tree produced byTomlParser.document().Visit a parse tree produced byTomlParser.dottedKey().Visit a parse tree produced byTomlParser.expression().Visit a parse tree produced byTomlParser.floatingPoint().Visit a parse tree produced byTomlParser.inlineTable().Visit a parse tree produced byTomlParser.integer().Visit a parse tree produced byTomlParser.key().Visit a parse tree produced byTomlParser.keyValue().Visit a parse tree produced byTomlParser.quotedKey().Visit a parse tree produced byTomlParser.simpleKey().Visit a parse tree produced byTomlParser.standardTable().Visit a parse tree produced byTomlParser.string().Visit a parse tree produced byTomlParser.table().Visit a parse tree produced byTomlParser.unquotedKey().Visit a parse tree produced byTomlParser.value().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitDocument
Visit a parse tree produced byTomlParser.document().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpression
Visit a parse tree produced byTomlParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComment
Visit a parse tree produced byTomlParser.comment().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyValue
Visit a parse tree produced byTomlParser.keyValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKey
Visit a parse tree produced byTomlParser.key().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleKey
Visit a parse tree produced byTomlParser.simpleKey().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnquotedKey
Visit a parse tree produced byTomlParser.unquotedKey().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQuotedKey
Visit a parse tree produced byTomlParser.quotedKey().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDottedKey
Visit a parse tree produced byTomlParser.dottedKey().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValue
Visit a parse tree produced byTomlParser.value().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitString
Visit a parse tree produced byTomlParser.string().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInteger
Visit a parse tree produced byTomlParser.integer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFloatingPoint
Visit a parse tree produced byTomlParser.floatingPoint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBool
Visit a parse tree produced byTomlParser.bool().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDateTime
Visit a parse tree produced byTomlParser.dateTime().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommentOrNl
Visit a parse tree produced byTomlParser.commentOrNl().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArray
Visit a parse tree produced byTomlParser.array().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTable
Visit a parse tree produced byTomlParser.table().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStandardTable
Visit a parse tree produced byTomlParser.standardTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInlineTable
Visit a parse tree produced byTomlParser.inlineTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayTable
Visit a parse tree produced byTomlParser.arrayTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-