Class TomlParserBaseVisitor<T>
- java.lang.Object
-
- org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
-
- org.tomlj.internal.TomlParserBaseVisitor<T>
-
- Type Parameters:
T- The return type of the visit operation. UseVoidfor 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
public class TomlParserBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements TomlParserVisitor<T>
This class provides an empty implementation ofTomlParserVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description TomlParserBaseVisitor()
-
Method Summary
-
Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminal
-
-
-
-
Method Detail
-
visitToml
public T visitToml(TomlParser.TomlContext ctx)
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:
visitTomlin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpression
public T visitExpression(TomlParser.ExpressionContext ctx)
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:
visitExpressionin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTomlKey
public T visitTomlKey(TomlParser.TomlKeyContext ctx)
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:
visitTomlKeyin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyval
public T visitKeyval(TomlParser.KeyvalContext ctx)
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:
visitKeyvalin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKey
public T visitKey(TomlParser.KeyContext ctx)
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:
visitKeyin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleKey
public T visitSimpleKey(TomlParser.SimpleKeyContext ctx)
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:
visitSimpleKeyin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnquotedKey
public T visitUnquotedKey(TomlParser.UnquotedKeyContext ctx)
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:
visitUnquotedKeyin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQuotedKey
public T visitQuotedKey(TomlParser.QuotedKeyContext ctx)
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:
visitQuotedKeyin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVal
public T visitVal(TomlParser.ValContext ctx)
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:
visitValin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitString
public T visitString(TomlParser.StringContext ctx)
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:
visitStringin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBasicString
public T visitBasicString(TomlParser.BasicStringContext ctx)
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:
visitBasicStringin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBasicChar
public T visitBasicChar(TomlParser.BasicCharContext ctx)
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:
visitBasicCharin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBasicUnescaped
public T visitBasicUnescaped(TomlParser.BasicUnescapedContext ctx)
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:
visitBasicUnescapedin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEscaped
public T visitEscaped(TomlParser.EscapedContext ctx)
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:
visitEscapedin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMlBasicString
public T visitMlBasicString(TomlParser.MlBasicStringContext ctx)
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:
visitMlBasicStringin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMlBasicChar
public T visitMlBasicChar(TomlParser.MlBasicCharContext ctx)
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:
visitMlBasicCharin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMlBasicUnescaped
public T visitMlBasicUnescaped(TomlParser.MlBasicUnescapedContext ctx)
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:
visitMlBasicUnescapedin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteralString
public T visitLiteralString(TomlParser.LiteralStringContext ctx)
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:
visitLiteralStringin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteralBody
public T visitLiteralBody(TomlParser.LiteralBodyContext ctx)
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:
visitLiteralBodyin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMlLiteralString
public T visitMlLiteralString(TomlParser.MlLiteralStringContext ctx)
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:
visitMlLiteralStringin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMlLiteralBody
public T visitMlLiteralBody(TomlParser.MlLiteralBodyContext ctx)
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:
visitMlLiteralBodyin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInteger
public T visitInteger(TomlParser.IntegerContext ctx)
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:
visitIntegerin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDecInt
public T visitDecInt(TomlParser.DecIntContext ctx)
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:
visitDecIntin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHexInt
public T visitHexInt(TomlParser.HexIntContext ctx)
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:
visitHexIntin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOctInt
public T visitOctInt(TomlParser.OctIntContext ctx)
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:
visitOctIntin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinInt
public T visitBinInt(TomlParser.BinIntContext ctx)
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:
visitBinIntin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFloatValue
public T visitFloatValue(TomlParser.FloatValueContext ctx)
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:
visitFloatValuein interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRegularFloat
public T visitRegularFloat(TomlParser.RegularFloatContext ctx)
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:
visitRegularFloatin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRegularFloatInf
public T visitRegularFloatInf(TomlParser.RegularFloatInfContext ctx)
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:
visitRegularFloatInfin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRegularFloatNaN
public T visitRegularFloatNaN(TomlParser.RegularFloatNaNContext ctx)
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:
visitRegularFloatNaNin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanValue
public T visitBooleanValue(TomlParser.BooleanValueContext ctx)
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:
visitBooleanValuein interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrueBool
public T visitTrueBool(TomlParser.TrueBoolContext ctx)
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:
visitTrueBoolin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFalseBool
public T visitFalseBool(TomlParser.FalseBoolContext ctx)
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:
visitFalseBoolin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDateTime
public T visitDateTime(TomlParser.DateTimeContext ctx)
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:
visitDateTimein interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOffsetDateTime
public T visitOffsetDateTime(TomlParser.OffsetDateTimeContext ctx)
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:
visitOffsetDateTimein interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLocalDateTime
public T visitLocalDateTime(TomlParser.LocalDateTimeContext ctx)
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:
visitLocalDateTimein interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLocalDate
public T visitLocalDate(TomlParser.LocalDateContext ctx)
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:
visitLocalDatein interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLocalTime
public T visitLocalTime(TomlParser.LocalTimeContext ctx)
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:
visitLocalTimein interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDate
public T visitDate(TomlParser.DateContext ctx)
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:
visitDatein interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTime
public T visitTime(TomlParser.TimeContext ctx)
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:
visitTimein interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTimeOffset
public T visitTimeOffset(TomlParser.TimeOffsetContext ctx)
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:
visitTimeOffsetin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHourOffset
public T visitHourOffset(TomlParser.HourOffsetContext ctx)
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:
visitHourOffsetin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMinuteOffset
public T visitMinuteOffset(TomlParser.MinuteOffsetContext ctx)
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:
visitMinuteOffsetin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSecondFraction
public T visitSecondFraction(TomlParser.SecondFractionContext ctx)
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:
visitSecondFractionin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitYear
public T visitYear(TomlParser.YearContext ctx)
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:
visitYearin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMonth
public T visitMonth(TomlParser.MonthContext ctx)
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:
visitMonthin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDay
public T visitDay(TomlParser.DayContext ctx)
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:
visitDayin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHour
public T visitHour(TomlParser.HourContext ctx)
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:
visitHourin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMinute
public T visitMinute(TomlParser.MinuteContext ctx)
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:
visitMinutein interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSecond
public T visitSecond(TomlParser.SecondContext ctx)
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:
visitSecondin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArray
public T visitArray(TomlParser.ArrayContext ctx)
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:
visitArrayin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayValues
public T visitArrayValues(TomlParser.ArrayValuesContext ctx)
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:
visitArrayValuesin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayValue
public T visitArrayValue(TomlParser.ArrayValueContext ctx)
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:
visitArrayValuein interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTable
public T visitTable(TomlParser.TableContext ctx)
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:
visitTablein interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStandardTable
public T visitStandardTable(TomlParser.StandardTableContext ctx)
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:
visitStandardTablein interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInlineTable
public T visitInlineTable(TomlParser.InlineTableContext ctx)
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:
visitInlineTablein interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInlineTableValues
public T visitInlineTableValues(TomlParser.InlineTableValuesContext ctx)
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:
visitInlineTableValuesin interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitArrayTable
public T visitArrayTable(TomlParser.ArrayTableContext ctx)
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:
visitArrayTablein interfaceTomlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-