tuweni / org.apache.tuweni.toml.internal

Package org.apache.tuweni.toml.internal

Types

TomlLexer

open class TomlLexer : Lexer

TomlParser

open class TomlParser : Parser

TomlParserBaseListener

This class provides an empty implementation of TomlParserListener, which can be extended to create a listener which only needs to handle a subset of the available methods.

open class TomlParserBaseListener : TomlParserListener

TomlParserBaseVisitor

This class provides an empty implementation of TomlParserVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods.

open class TomlParserBaseVisitor<T : Any!> : AbstractParseTreeVisitor<T>, TomlParserVisitor<T>

TomlParserListener

This interface defines a complete listener for a parse tree produced by TomlParser.

interface TomlParserListener : ParseTreeListener

TomlParserVisitor

This interface defines a complete generic visitor for a parse tree produced by TomlParser.

interface TomlParserVisitor<T : Any!> : ParseTreeVisitor<T>