Package-level declarations

Types

Link copied to clipboard
open class JsonPathLexer(input: CharStream) : Lexer
Link copied to clipboard
open class JsonPathParser(input: TokenStream) : Parser
Link copied to clipboard

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

Link copied to clipboard
abstract class JsonPathParserBaseVisitor<T> : AbstractParseTreeVisitor<T> , JsonPathParserVisitor<T>

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

Link copied to clipboard
interface JsonPathParserListener : ParseTreeListener

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

Link copied to clipboard
interface JsonPathParserVisitor<T> : ParseTreeVisitor<T>

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