Class TomlParserBaseListener
- java.lang.Object
-
- org.tomlj.internal.TomlParserBaseListener
-
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
,TomlParserListener
public class TomlParserBaseListener extends java.lang.Object implements TomlParserListener
This class provides an empty implementation ofTomlParserListener
, which can be extended to create a listener which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description TomlParserBaseListener()
-
Method Summary
-
-
-
Method Detail
-
enterToml
public void enterToml(TomlParser.TomlContext ctx)
Enter a parse tree produced byTomlParser.toml()
.The default implementation does nothing.
- Specified by:
enterToml
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitToml
public void exitToml(TomlParser.TomlContext ctx)
Exit a parse tree produced byTomlParser.toml()
.The default implementation does nothing.
- Specified by:
exitToml
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterExpression
public void enterExpression(TomlParser.ExpressionContext ctx)
Enter a parse tree produced byTomlParser.expression()
.The default implementation does nothing.
- Specified by:
enterExpression
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitExpression
public void exitExpression(TomlParser.ExpressionContext ctx)
Exit a parse tree produced byTomlParser.expression()
.The default implementation does nothing.
- Specified by:
exitExpression
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterTomlKey
public void enterTomlKey(TomlParser.TomlKeyContext ctx)
Enter a parse tree produced byTomlParser.tomlKey()
.The default implementation does nothing.
- Specified by:
enterTomlKey
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitTomlKey
public void exitTomlKey(TomlParser.TomlKeyContext ctx)
Exit a parse tree produced byTomlParser.tomlKey()
.The default implementation does nothing.
- Specified by:
exitTomlKey
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterKeyval
public void enterKeyval(TomlParser.KeyvalContext ctx)
Enter a parse tree produced byTomlParser.keyval()
.The default implementation does nothing.
- Specified by:
enterKeyval
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitKeyval
public void exitKeyval(TomlParser.KeyvalContext ctx)
Exit a parse tree produced byTomlParser.keyval()
.The default implementation does nothing.
- Specified by:
exitKeyval
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterKey
public void enterKey(TomlParser.KeyContext ctx)
Enter a parse tree produced byTomlParser.key()
.The default implementation does nothing.
- Specified by:
enterKey
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitKey
public void exitKey(TomlParser.KeyContext ctx)
Exit a parse tree produced byTomlParser.key()
.The default implementation does nothing.
- Specified by:
exitKey
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterSimpleKey
public void enterSimpleKey(TomlParser.SimpleKeyContext ctx)
Enter a parse tree produced byTomlParser.simpleKey()
.The default implementation does nothing.
- Specified by:
enterSimpleKey
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitSimpleKey
public void exitSimpleKey(TomlParser.SimpleKeyContext ctx)
Exit a parse tree produced byTomlParser.simpleKey()
.The default implementation does nothing.
- Specified by:
exitSimpleKey
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterUnquotedKey
public void enterUnquotedKey(TomlParser.UnquotedKeyContext ctx)
Enter a parse tree produced byTomlParser.unquotedKey()
.The default implementation does nothing.
- Specified by:
enterUnquotedKey
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitUnquotedKey
public void exitUnquotedKey(TomlParser.UnquotedKeyContext ctx)
Exit a parse tree produced byTomlParser.unquotedKey()
.The default implementation does nothing.
- Specified by:
exitUnquotedKey
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterQuotedKey
public void enterQuotedKey(TomlParser.QuotedKeyContext ctx)
Enter a parse tree produced byTomlParser.quotedKey()
.The default implementation does nothing.
- Specified by:
enterQuotedKey
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitQuotedKey
public void exitQuotedKey(TomlParser.QuotedKeyContext ctx)
Exit a parse tree produced byTomlParser.quotedKey()
.The default implementation does nothing.
- Specified by:
exitQuotedKey
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterVal
public void enterVal(TomlParser.ValContext ctx)
Enter a parse tree produced byTomlParser.val()
.The default implementation does nothing.
- Specified by:
enterVal
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitVal
public void exitVal(TomlParser.ValContext ctx)
Exit a parse tree produced byTomlParser.val()
.The default implementation does nothing.
- Specified by:
exitVal
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterString
public void enterString(TomlParser.StringContext ctx)
Enter a parse tree produced byTomlParser.string()
.The default implementation does nothing.
- Specified by:
enterString
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitString
public void exitString(TomlParser.StringContext ctx)
Exit a parse tree produced byTomlParser.string()
.The default implementation does nothing.
- Specified by:
exitString
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterBasicString
public void enterBasicString(TomlParser.BasicStringContext ctx)
Enter a parse tree produced byTomlParser.basicString()
.The default implementation does nothing.
- Specified by:
enterBasicString
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitBasicString
public void exitBasicString(TomlParser.BasicStringContext ctx)
Exit a parse tree produced byTomlParser.basicString()
.The default implementation does nothing.
- Specified by:
exitBasicString
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterBasicChar
public void enterBasicChar(TomlParser.BasicCharContext ctx)
Enter a parse tree produced byTomlParser.basicChar()
.The default implementation does nothing.
- Specified by:
enterBasicChar
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitBasicChar
public void exitBasicChar(TomlParser.BasicCharContext ctx)
Exit a parse tree produced byTomlParser.basicChar()
.The default implementation does nothing.
- Specified by:
exitBasicChar
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterBasicUnescaped
public void enterBasicUnescaped(TomlParser.BasicUnescapedContext ctx)
Enter a parse tree produced byTomlParser.basicUnescaped()
.The default implementation does nothing.
- Specified by:
enterBasicUnescaped
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitBasicUnescaped
public void exitBasicUnescaped(TomlParser.BasicUnescapedContext ctx)
Exit a parse tree produced byTomlParser.basicUnescaped()
.The default implementation does nothing.
- Specified by:
exitBasicUnescaped
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterEscaped
public void enterEscaped(TomlParser.EscapedContext ctx)
Enter a parse tree produced byTomlParser.escaped()
.The default implementation does nothing.
- Specified by:
enterEscaped
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitEscaped
public void exitEscaped(TomlParser.EscapedContext ctx)
Exit a parse tree produced byTomlParser.escaped()
.The default implementation does nothing.
- Specified by:
exitEscaped
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterMlBasicString
public void enterMlBasicString(TomlParser.MlBasicStringContext ctx)
Enter a parse tree produced byTomlParser.mlBasicString()
.The default implementation does nothing.
- Specified by:
enterMlBasicString
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitMlBasicString
public void exitMlBasicString(TomlParser.MlBasicStringContext ctx)
Exit a parse tree produced byTomlParser.mlBasicString()
.The default implementation does nothing.
- Specified by:
exitMlBasicString
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterMlBasicChar
public void enterMlBasicChar(TomlParser.MlBasicCharContext ctx)
Enter a parse tree produced byTomlParser.mlBasicChar()
.The default implementation does nothing.
- Specified by:
enterMlBasicChar
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitMlBasicChar
public void exitMlBasicChar(TomlParser.MlBasicCharContext ctx)
Exit a parse tree produced byTomlParser.mlBasicChar()
.The default implementation does nothing.
- Specified by:
exitMlBasicChar
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterMlBasicUnescaped
public void enterMlBasicUnescaped(TomlParser.MlBasicUnescapedContext ctx)
Enter a parse tree produced byTomlParser.mlBasicUnescaped()
.The default implementation does nothing.
- Specified by:
enterMlBasicUnescaped
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitMlBasicUnescaped
public void exitMlBasicUnescaped(TomlParser.MlBasicUnescapedContext ctx)
Exit a parse tree produced byTomlParser.mlBasicUnescaped()
.The default implementation does nothing.
- Specified by:
exitMlBasicUnescaped
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterLiteralString
public void enterLiteralString(TomlParser.LiteralStringContext ctx)
Enter a parse tree produced byTomlParser.literalString()
.The default implementation does nothing.
- Specified by:
enterLiteralString
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitLiteralString
public void exitLiteralString(TomlParser.LiteralStringContext ctx)
Exit a parse tree produced byTomlParser.literalString()
.The default implementation does nothing.
- Specified by:
exitLiteralString
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterLiteralBody
public void enterLiteralBody(TomlParser.LiteralBodyContext ctx)
Enter a parse tree produced byTomlParser.literalBody()
.The default implementation does nothing.
- Specified by:
enterLiteralBody
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitLiteralBody
public void exitLiteralBody(TomlParser.LiteralBodyContext ctx)
Exit a parse tree produced byTomlParser.literalBody()
.The default implementation does nothing.
- Specified by:
exitLiteralBody
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterMlLiteralString
public void enterMlLiteralString(TomlParser.MlLiteralStringContext ctx)
Enter a parse tree produced byTomlParser.mlLiteralString()
.The default implementation does nothing.
- Specified by:
enterMlLiteralString
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitMlLiteralString
public void exitMlLiteralString(TomlParser.MlLiteralStringContext ctx)
Exit a parse tree produced byTomlParser.mlLiteralString()
.The default implementation does nothing.
- Specified by:
exitMlLiteralString
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterMlLiteralBody
public void enterMlLiteralBody(TomlParser.MlLiteralBodyContext ctx)
Enter a parse tree produced byTomlParser.mlLiteralBody()
.The default implementation does nothing.
- Specified by:
enterMlLiteralBody
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitMlLiteralBody
public void exitMlLiteralBody(TomlParser.MlLiteralBodyContext ctx)
Exit a parse tree produced byTomlParser.mlLiteralBody()
.The default implementation does nothing.
- Specified by:
exitMlLiteralBody
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterInteger
public void enterInteger(TomlParser.IntegerContext ctx)
Enter a parse tree produced byTomlParser.integer()
.The default implementation does nothing.
- Specified by:
enterInteger
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitInteger
public void exitInteger(TomlParser.IntegerContext ctx)
Exit a parse tree produced byTomlParser.integer()
.The default implementation does nothing.
- Specified by:
exitInteger
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterDecInt
public void enterDecInt(TomlParser.DecIntContext ctx)
Enter a parse tree produced byTomlParser.decInt()
.The default implementation does nothing.
- Specified by:
enterDecInt
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitDecInt
public void exitDecInt(TomlParser.DecIntContext ctx)
Exit a parse tree produced byTomlParser.decInt()
.The default implementation does nothing.
- Specified by:
exitDecInt
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterHexInt
public void enterHexInt(TomlParser.HexIntContext ctx)
Enter a parse tree produced byTomlParser.hexInt()
.The default implementation does nothing.
- Specified by:
enterHexInt
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitHexInt
public void exitHexInt(TomlParser.HexIntContext ctx)
Exit a parse tree produced byTomlParser.hexInt()
.The default implementation does nothing.
- Specified by:
exitHexInt
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterOctInt
public void enterOctInt(TomlParser.OctIntContext ctx)
Enter a parse tree produced byTomlParser.octInt()
.The default implementation does nothing.
- Specified by:
enterOctInt
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitOctInt
public void exitOctInt(TomlParser.OctIntContext ctx)
Exit a parse tree produced byTomlParser.octInt()
.The default implementation does nothing.
- Specified by:
exitOctInt
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterBinInt
public void enterBinInt(TomlParser.BinIntContext ctx)
Enter a parse tree produced byTomlParser.binInt()
.The default implementation does nothing.
- Specified by:
enterBinInt
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitBinInt
public void exitBinInt(TomlParser.BinIntContext ctx)
Exit a parse tree produced byTomlParser.binInt()
.The default implementation does nothing.
- Specified by:
exitBinInt
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterFloatValue
public void enterFloatValue(TomlParser.FloatValueContext ctx)
Enter a parse tree produced byTomlParser.floatValue()
.The default implementation does nothing.
- Specified by:
enterFloatValue
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitFloatValue
public void exitFloatValue(TomlParser.FloatValueContext ctx)
Exit a parse tree produced byTomlParser.floatValue()
.The default implementation does nothing.
- Specified by:
exitFloatValue
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterRegularFloat
public void enterRegularFloat(TomlParser.RegularFloatContext ctx)
Enter a parse tree produced byTomlParser.regularFloat()
.The default implementation does nothing.
- Specified by:
enterRegularFloat
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitRegularFloat
public void exitRegularFloat(TomlParser.RegularFloatContext ctx)
Exit a parse tree produced byTomlParser.regularFloat()
.The default implementation does nothing.
- Specified by:
exitRegularFloat
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterRegularFloatInf
public void enterRegularFloatInf(TomlParser.RegularFloatInfContext ctx)
Enter a parse tree produced byTomlParser.regularFloatInf()
.The default implementation does nothing.
- Specified by:
enterRegularFloatInf
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitRegularFloatInf
public void exitRegularFloatInf(TomlParser.RegularFloatInfContext ctx)
Exit a parse tree produced byTomlParser.regularFloatInf()
.The default implementation does nothing.
- Specified by:
exitRegularFloatInf
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterRegularFloatNaN
public void enterRegularFloatNaN(TomlParser.RegularFloatNaNContext ctx)
Enter a parse tree produced byTomlParser.regularFloatNaN()
.The default implementation does nothing.
- Specified by:
enterRegularFloatNaN
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitRegularFloatNaN
public void exitRegularFloatNaN(TomlParser.RegularFloatNaNContext ctx)
Exit a parse tree produced byTomlParser.regularFloatNaN()
.The default implementation does nothing.
- Specified by:
exitRegularFloatNaN
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterBooleanValue
public void enterBooleanValue(TomlParser.BooleanValueContext ctx)
Enter a parse tree produced byTomlParser.booleanValue()
.The default implementation does nothing.
- Specified by:
enterBooleanValue
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitBooleanValue
public void exitBooleanValue(TomlParser.BooleanValueContext ctx)
Exit a parse tree produced byTomlParser.booleanValue()
.The default implementation does nothing.
- Specified by:
exitBooleanValue
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterTrueBool
public void enterTrueBool(TomlParser.TrueBoolContext ctx)
Enter a parse tree produced byTomlParser.trueBool()
.The default implementation does nothing.
- Specified by:
enterTrueBool
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitTrueBool
public void exitTrueBool(TomlParser.TrueBoolContext ctx)
Exit a parse tree produced byTomlParser.trueBool()
.The default implementation does nothing.
- Specified by:
exitTrueBool
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterFalseBool
public void enterFalseBool(TomlParser.FalseBoolContext ctx)
Enter a parse tree produced byTomlParser.falseBool()
.The default implementation does nothing.
- Specified by:
enterFalseBool
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitFalseBool
public void exitFalseBool(TomlParser.FalseBoolContext ctx)
Exit a parse tree produced byTomlParser.falseBool()
.The default implementation does nothing.
- Specified by:
exitFalseBool
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterDateTime
public void enterDateTime(TomlParser.DateTimeContext ctx)
Enter a parse tree produced byTomlParser.dateTime()
.The default implementation does nothing.
- Specified by:
enterDateTime
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitDateTime
public void exitDateTime(TomlParser.DateTimeContext ctx)
Exit a parse tree produced byTomlParser.dateTime()
.The default implementation does nothing.
- Specified by:
exitDateTime
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterOffsetDateTime
public void enterOffsetDateTime(TomlParser.OffsetDateTimeContext ctx)
Enter a parse tree produced byTomlParser.offsetDateTime()
.The default implementation does nothing.
- Specified by:
enterOffsetDateTime
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitOffsetDateTime
public void exitOffsetDateTime(TomlParser.OffsetDateTimeContext ctx)
Exit a parse tree produced byTomlParser.offsetDateTime()
.The default implementation does nothing.
- Specified by:
exitOffsetDateTime
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterLocalDateTime
public void enterLocalDateTime(TomlParser.LocalDateTimeContext ctx)
Enter a parse tree produced byTomlParser.localDateTime()
.The default implementation does nothing.
- Specified by:
enterLocalDateTime
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitLocalDateTime
public void exitLocalDateTime(TomlParser.LocalDateTimeContext ctx)
Exit a parse tree produced byTomlParser.localDateTime()
.The default implementation does nothing.
- Specified by:
exitLocalDateTime
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterLocalDate
public void enterLocalDate(TomlParser.LocalDateContext ctx)
Enter a parse tree produced byTomlParser.localDate()
.The default implementation does nothing.
- Specified by:
enterLocalDate
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitLocalDate
public void exitLocalDate(TomlParser.LocalDateContext ctx)
Exit a parse tree produced byTomlParser.localDate()
.The default implementation does nothing.
- Specified by:
exitLocalDate
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterLocalTime
public void enterLocalTime(TomlParser.LocalTimeContext ctx)
Enter a parse tree produced byTomlParser.localTime()
.The default implementation does nothing.
- Specified by:
enterLocalTime
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitLocalTime
public void exitLocalTime(TomlParser.LocalTimeContext ctx)
Exit a parse tree produced byTomlParser.localTime()
.The default implementation does nothing.
- Specified by:
exitLocalTime
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterDate
public void enterDate(TomlParser.DateContext ctx)
Enter a parse tree produced byTomlParser.date()
.The default implementation does nothing.
- Specified by:
enterDate
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitDate
public void exitDate(TomlParser.DateContext ctx)
Exit a parse tree produced byTomlParser.date()
.The default implementation does nothing.
- Specified by:
exitDate
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterTime
public void enterTime(TomlParser.TimeContext ctx)
Enter a parse tree produced byTomlParser.time()
.The default implementation does nothing.
- Specified by:
enterTime
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitTime
public void exitTime(TomlParser.TimeContext ctx)
Exit a parse tree produced byTomlParser.time()
.The default implementation does nothing.
- Specified by:
exitTime
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterTimeOffset
public void enterTimeOffset(TomlParser.TimeOffsetContext ctx)
Enter a parse tree produced byTomlParser.timeOffset()
.The default implementation does nothing.
- Specified by:
enterTimeOffset
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitTimeOffset
public void exitTimeOffset(TomlParser.TimeOffsetContext ctx)
Exit a parse tree produced byTomlParser.timeOffset()
.The default implementation does nothing.
- Specified by:
exitTimeOffset
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterHourOffset
public void enterHourOffset(TomlParser.HourOffsetContext ctx)
Enter a parse tree produced byTomlParser.hourOffset()
.The default implementation does nothing.
- Specified by:
enterHourOffset
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitHourOffset
public void exitHourOffset(TomlParser.HourOffsetContext ctx)
Exit a parse tree produced byTomlParser.hourOffset()
.The default implementation does nothing.
- Specified by:
exitHourOffset
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterMinuteOffset
public void enterMinuteOffset(TomlParser.MinuteOffsetContext ctx)
Enter a parse tree produced byTomlParser.minuteOffset()
.The default implementation does nothing.
- Specified by:
enterMinuteOffset
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitMinuteOffset
public void exitMinuteOffset(TomlParser.MinuteOffsetContext ctx)
Exit a parse tree produced byTomlParser.minuteOffset()
.The default implementation does nothing.
- Specified by:
exitMinuteOffset
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterSecondFraction
public void enterSecondFraction(TomlParser.SecondFractionContext ctx)
Enter a parse tree produced byTomlParser.secondFraction()
.The default implementation does nothing.
- Specified by:
enterSecondFraction
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitSecondFraction
public void exitSecondFraction(TomlParser.SecondFractionContext ctx)
Exit a parse tree produced byTomlParser.secondFraction()
.The default implementation does nothing.
- Specified by:
exitSecondFraction
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterYear
public void enterYear(TomlParser.YearContext ctx)
Enter a parse tree produced byTomlParser.year()
.The default implementation does nothing.
- Specified by:
enterYear
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitYear
public void exitYear(TomlParser.YearContext ctx)
Exit a parse tree produced byTomlParser.year()
.The default implementation does nothing.
- Specified by:
exitYear
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterMonth
public void enterMonth(TomlParser.MonthContext ctx)
Enter a parse tree produced byTomlParser.month()
.The default implementation does nothing.
- Specified by:
enterMonth
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitMonth
public void exitMonth(TomlParser.MonthContext ctx)
Exit a parse tree produced byTomlParser.month()
.The default implementation does nothing.
- Specified by:
exitMonth
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterDay
public void enterDay(TomlParser.DayContext ctx)
Enter a parse tree produced byTomlParser.day()
.The default implementation does nothing.
- Specified by:
enterDay
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitDay
public void exitDay(TomlParser.DayContext ctx)
Exit a parse tree produced byTomlParser.day()
.The default implementation does nothing.
- Specified by:
exitDay
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterHour
public void enterHour(TomlParser.HourContext ctx)
Enter a parse tree produced byTomlParser.hour()
.The default implementation does nothing.
- Specified by:
enterHour
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitHour
public void exitHour(TomlParser.HourContext ctx)
Exit a parse tree produced byTomlParser.hour()
.The default implementation does nothing.
- Specified by:
exitHour
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterMinute
public void enterMinute(TomlParser.MinuteContext ctx)
Enter a parse tree produced byTomlParser.minute()
.The default implementation does nothing.
- Specified by:
enterMinute
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitMinute
public void exitMinute(TomlParser.MinuteContext ctx)
Exit a parse tree produced byTomlParser.minute()
.The default implementation does nothing.
- Specified by:
exitMinute
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterSecond
public void enterSecond(TomlParser.SecondContext ctx)
Enter a parse tree produced byTomlParser.second()
.The default implementation does nothing.
- Specified by:
enterSecond
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitSecond
public void exitSecond(TomlParser.SecondContext ctx)
Exit a parse tree produced byTomlParser.second()
.The default implementation does nothing.
- Specified by:
exitSecond
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterArray
public void enterArray(TomlParser.ArrayContext ctx)
Enter a parse tree produced byTomlParser.array()
.The default implementation does nothing.
- Specified by:
enterArray
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitArray
public void exitArray(TomlParser.ArrayContext ctx)
Exit a parse tree produced byTomlParser.array()
.The default implementation does nothing.
- Specified by:
exitArray
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterArrayValues
public void enterArrayValues(TomlParser.ArrayValuesContext ctx)
Enter a parse tree produced byTomlParser.arrayValues()
.The default implementation does nothing.
- Specified by:
enterArrayValues
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitArrayValues
public void exitArrayValues(TomlParser.ArrayValuesContext ctx)
Exit a parse tree produced byTomlParser.arrayValues()
.The default implementation does nothing.
- Specified by:
exitArrayValues
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterArrayValue
public void enterArrayValue(TomlParser.ArrayValueContext ctx)
Enter a parse tree produced byTomlParser.arrayValue()
.The default implementation does nothing.
- Specified by:
enterArrayValue
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitArrayValue
public void exitArrayValue(TomlParser.ArrayValueContext ctx)
Exit a parse tree produced byTomlParser.arrayValue()
.The default implementation does nothing.
- Specified by:
exitArrayValue
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterTable
public void enterTable(TomlParser.TableContext ctx)
Enter a parse tree produced byTomlParser.table()
.The default implementation does nothing.
- Specified by:
enterTable
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitTable
public void exitTable(TomlParser.TableContext ctx)
Exit a parse tree produced byTomlParser.table()
.The default implementation does nothing.
- Specified by:
exitTable
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterStandardTable
public void enterStandardTable(TomlParser.StandardTableContext ctx)
Enter a parse tree produced byTomlParser.standardTable()
.The default implementation does nothing.
- Specified by:
enterStandardTable
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitStandardTable
public void exitStandardTable(TomlParser.StandardTableContext ctx)
Exit a parse tree produced byTomlParser.standardTable()
.The default implementation does nothing.
- Specified by:
exitStandardTable
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterInlineTable
public void enterInlineTable(TomlParser.InlineTableContext ctx)
Enter a parse tree produced byTomlParser.inlineTable()
.The default implementation does nothing.
- Specified by:
enterInlineTable
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitInlineTable
public void exitInlineTable(TomlParser.InlineTableContext ctx)
Exit a parse tree produced byTomlParser.inlineTable()
.The default implementation does nothing.
- Specified by:
exitInlineTable
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterInlineTableValues
public void enterInlineTableValues(TomlParser.InlineTableValuesContext ctx)
Enter a parse tree produced byTomlParser.inlineTableValues()
.The default implementation does nothing.
- Specified by:
enterInlineTableValues
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitInlineTableValues
public void exitInlineTableValues(TomlParser.InlineTableValuesContext ctx)
Exit a parse tree produced byTomlParser.inlineTableValues()
.The default implementation does nothing.
- Specified by:
exitInlineTableValues
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterArrayTable
public void enterArrayTable(TomlParser.ArrayTableContext ctx)
Enter a parse tree produced byTomlParser.arrayTable()
.The default implementation does nothing.
- Specified by:
enterArrayTable
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
exitArrayTable
public void exitArrayTable(TomlParser.ArrayTableContext ctx)
Exit a parse tree produced byTomlParser.arrayTable()
.The default implementation does nothing.
- Specified by:
exitArrayTable
in interfaceTomlParserListener
- Parameters:
ctx
- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
enterEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
exitEveryRule
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
- Specified by:
visitTerminal
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
- Specified by:
visitErrorNode
in interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
-