Class TomlParserBaseVisitor<T>
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
,TomlParserVisitor<T>
- Direct Known Subclasses:
ArrayVisitor
,InlineTableVisitor
,KeyVisitor
,LineVisitor
,LocalDateVisitor
,LocalTimeVisitor
,QuotedStringVisitor
,ValueVisitor
,ZoneOffsetVisitor
TomlParserVisitor
,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byTomlParser.array()
.Visit a parse tree produced byTomlParser.arrayTable()
.Visit a parse tree produced byTomlParser.arrayValue()
.Visit a parse tree produced byTomlParser.arrayValues()
.Visit a parse tree produced byTomlParser.basicChar()
.Visit a parse tree produced byTomlParser.basicString()
.Visit a parse tree produced byTomlParser.basicUnescaped()
.Visit a parse tree produced byTomlParser.binInt()
.Visit a parse tree produced byTomlParser.booleanValue()
.Visit a parse tree produced byTomlParser.date()
.Visit a parse tree produced byTomlParser.dateTime()
.Visit a parse tree produced byTomlParser.day()
.Visit a parse tree produced byTomlParser.decInt()
.Visit a parse tree produced byTomlParser.escaped()
.Visit a parse tree produced byTomlParser.expression()
.Visit a parse tree produced byTomlParser.falseBool()
.Visit a parse tree produced byTomlParser.floatValue()
.Visit a parse tree produced byTomlParser.hexInt()
.Visit a parse tree produced byTomlParser.hour()
.Visit a parse tree produced byTomlParser.hourOffset()
.Visit a parse tree produced byTomlParser.inlineTable()
.Visit a parse tree produced byTomlParser.inlineTableValues()
.Visit a parse tree produced byTomlParser.integer()
.Visit a parse tree produced byTomlParser.key()
.Visit a parse tree produced byTomlParser.keyval()
.Visit a parse tree produced byTomlParser.literalBody()
.Visit a parse tree produced byTomlParser.literalString()
.Visit a parse tree produced byTomlParser.localDate()
.Visit a parse tree produced byTomlParser.localDateTime()
.Visit a parse tree produced byTomlParser.localTime()
.Visit a parse tree produced byTomlParser.minute()
.Visit a parse tree produced byTomlParser.minuteOffset()
.Visit a parse tree produced byTomlParser.mlBasicChar()
.Visit a parse tree produced byTomlParser.mlBasicString()
.Visit a parse tree produced byTomlParser.mlBasicUnescaped()
.Visit a parse tree produced byTomlParser.mlLiteralBody()
.Visit a parse tree produced byTomlParser.mlLiteralString()
.Visit a parse tree produced byTomlParser.month()
.Visit a parse tree produced byTomlParser.octInt()
.Visit a parse tree produced byTomlParser.offsetDateTime()
.Visit a parse tree produced byTomlParser.quotedKey()
.Visit a parse tree produced byTomlParser.regularFloat()
.Visit a parse tree produced byTomlParser.regularFloatInf()
.Visit a parse tree produced byTomlParser.regularFloatNaN()
.Visit a parse tree produced byTomlParser.second()
.Visit a parse tree produced byTomlParser.secondFraction()
.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.time()
.Visit a parse tree produced byTomlParser.timeOffset()
.Visit a parse tree produced byTomlParser.toml()
.Visit a parse tree produced byTomlParser.tomlKey()
.Visit a parse tree produced byTomlParser.trueBool()
.Visit a parse tree produced byTomlParser.unquotedKey()
.Visit a parse tree produced byTomlParser.val()
.Visit a parse tree produced byTomlParser.year()
.Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminal
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Constructor Details
-
TomlParserBaseVisitor
public TomlParserBaseVisitor()
-
-
Method Details
-
visitToml
Visit a parse tree produced byTomlParser.toml()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitToml
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitExpression
Visit a parse tree produced byTomlParser.expression()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitExpression
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTomlKey
Visit a parse tree produced byTomlParser.tomlKey()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitTomlKey
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitKeyval
Visit a parse tree produced byTomlParser.keyval()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitKeyval
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitKey
Visit a parse tree produced byTomlParser.key()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitKey
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSimpleKey
Visit a parse tree produced byTomlParser.simpleKey()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitSimpleKey
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitUnquotedKey
Visit a parse tree produced byTomlParser.unquotedKey()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitUnquotedKey
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitQuotedKey
Visit a parse tree produced byTomlParser.quotedKey()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitQuotedKey
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitVal
Visit a parse tree produced byTomlParser.val()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitVal
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitString
Visit a parse tree produced byTomlParser.string()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitString
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitBasicString
Visit a parse tree produced byTomlParser.basicString()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitBasicString
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitBasicChar
Visit a parse tree produced byTomlParser.basicChar()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitBasicChar
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitBasicUnescaped
Visit a parse tree produced byTomlParser.basicUnescaped()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitBasicUnescaped
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitEscaped
Visit a parse tree produced byTomlParser.escaped()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitEscaped
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMlBasicString
Visit a parse tree produced byTomlParser.mlBasicString()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitMlBasicString
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMlBasicChar
Visit a parse tree produced byTomlParser.mlBasicChar()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitMlBasicChar
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMlBasicUnescaped
Visit a parse tree produced byTomlParser.mlBasicUnescaped()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitMlBasicUnescaped
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLiteralString
Visit a parse tree produced byTomlParser.literalString()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitLiteralString
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLiteralBody
Visit a parse tree produced byTomlParser.literalBody()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitLiteralBody
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMlLiteralString
Visit a parse tree produced byTomlParser.mlLiteralString()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitMlLiteralString
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMlLiteralBody
Visit a parse tree produced byTomlParser.mlLiteralBody()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitMlLiteralBody
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitInteger
Visit a parse tree produced byTomlParser.integer()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitInteger
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDecInt
Visit a parse tree produced byTomlParser.decInt()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitDecInt
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitHexInt
Visit a parse tree produced byTomlParser.hexInt()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitHexInt
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitOctInt
Visit a parse tree produced byTomlParser.octInt()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitOctInt
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitBinInt
Visit a parse tree produced byTomlParser.binInt()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitBinInt
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitFloatValue
Visit a parse tree produced byTomlParser.floatValue()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitFloatValue
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitRegularFloat
Visit a parse tree produced byTomlParser.regularFloat()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitRegularFloat
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitRegularFloatInf
Visit a parse tree produced byTomlParser.regularFloatInf()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitRegularFloatInf
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitRegularFloatNaN
Visit a parse tree produced byTomlParser.regularFloatNaN()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitRegularFloatNaN
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitBooleanValue
Visit a parse tree produced byTomlParser.booleanValue()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitBooleanValue
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTrueBool
Visit a parse tree produced byTomlParser.trueBool()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitTrueBool
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitFalseBool
Visit a parse tree produced byTomlParser.falseBool()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitFalseBool
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDateTime
Visit a parse tree produced byTomlParser.dateTime()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitDateTime
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitOffsetDateTime
Visit a parse tree produced byTomlParser.offsetDateTime()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitOffsetDateTime
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLocalDateTime
Visit a parse tree produced byTomlParser.localDateTime()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitLocalDateTime
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLocalDate
Visit a parse tree produced byTomlParser.localDate()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitLocalDate
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLocalTime
Visit a parse tree produced byTomlParser.localTime()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitLocalTime
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDate
Visit a parse tree produced byTomlParser.date()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitDate
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTime
Visit a parse tree produced byTomlParser.time()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitTime
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTimeOffset
Visit a parse tree produced byTomlParser.timeOffset()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitTimeOffset
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitHourOffset
Visit a parse tree produced byTomlParser.hourOffset()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitHourOffset
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMinuteOffset
Visit a parse tree produced byTomlParser.minuteOffset()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitMinuteOffset
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSecondFraction
Visit a parse tree produced byTomlParser.secondFraction()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitSecondFraction
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitYear
Visit a parse tree produced byTomlParser.year()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitYear
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMonth
Visit a parse tree produced byTomlParser.month()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitMonth
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDay
Visit a parse tree produced byTomlParser.day()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitDay
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitHour
Visit a parse tree produced byTomlParser.hour()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitHour
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMinute
Visit a parse tree produced byTomlParser.minute()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitMinute
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSecond
Visit a parse tree produced byTomlParser.second()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitSecond
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitArray
Visit a parse tree produced byTomlParser.array()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitArray
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitArrayValues
Visit a parse tree produced byTomlParser.arrayValues()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitArrayValues
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitArrayValue
Visit a parse tree produced byTomlParser.arrayValue()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitArrayValue
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTable
Visit a parse tree produced byTomlParser.table()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitTable
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitStandardTable
Visit a parse tree produced byTomlParser.standardTable()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitStandardTable
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitInlineTable
Visit a parse tree produced byTomlParser.inlineTable()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitInlineTable
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitInlineTableValues
Visit a parse tree produced byTomlParser.inlineTableValues()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitInlineTableValues
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitArrayTable
Visit a parse tree produced byTomlParser.arrayTable()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitArrayTable
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-