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. 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
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:
visitToml
in 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:
visitExpression
in 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:
visitTomlKey
in 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:
visitKeyval
in 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:
visitKey
in 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:
visitSimpleKey
in 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:
visitUnquotedKey
in 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:
visitQuotedKey
in 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:
visitVal
in 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:
visitString
in 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:
visitBasicString
in 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:
visitBasicChar
in 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:
visitBasicUnescaped
in 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:
visitEscaped
in 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:
visitMlBasicString
in 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:
visitMlBasicChar
in 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:
visitMlBasicUnescaped
in 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:
visitLiteralString
in 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:
visitLiteralBody
in 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:
visitMlLiteralString
in 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:
visitMlLiteralBody
in 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:
visitInteger
in 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:
visitDecInt
in 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:
visitHexInt
in 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:
visitOctInt
in 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:
visitBinInt
in 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:
visitFloatValue
in 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:
visitRegularFloat
in 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:
visitRegularFloatInf
in 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:
visitRegularFloatNaN
in 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:
visitBooleanValue
in 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:
visitTrueBool
in 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:
visitFalseBool
in 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:
visitDateTime
in 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:
visitOffsetDateTime
in 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:
visitLocalDateTime
in 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:
visitLocalDate
in 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:
visitLocalTime
in 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:
visitDate
in 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:
visitTime
in 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:
visitTimeOffset
in 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:
visitHourOffset
in 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:
visitMinuteOffset
in 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:
visitSecondFraction
in 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:
visitYear
in 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:
visitMonth
in 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:
visitDay
in 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:
visitHour
in 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:
visitMinute
in 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:
visitSecond
in 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:
visitArray
in 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:
visitArrayValues
in 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:
visitArrayValue
in 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:
visitTable
in 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:
visitStandardTable
in 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:
visitInlineTable
in 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:
visitInlineTableValues
in 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:
visitArrayTable
in interfaceTomlParserVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
-