Uses of Class
org.antlr.v4.runtime.Recognizer
-
Packages that use Recognizer Package Description org.antlr.v4.runtime org.antlr.v4.runtime.atn org.antlr.v4.runtime.tree.xpath org.antlr.v4.tool -
-
Uses of Recognizer in org.antlr.v4.runtime
Subclasses of Recognizer in org.antlr.v4.runtime Modifier and Type Class Description classLexerA lexer is recognizer that draws input symbols from a character stream.classLexerInterpreterclassParserThis is all the parsing support code essentially; most of it is error recovery stuff.classParserInterpreterA parser simulator that mimics what ANTLR's generated parser code does.Methods in org.antlr.v4.runtime that return Recognizer Modifier and Type Method Description Recognizer<?,?>RecognitionException. getRecognizer()Gets theRecognizerwhere this exception occurred.Methods in org.antlr.v4.runtime with parameters of type Recognizer Modifier and Type Method Description voidANTLRErrorListener. syntaxError(Recognizer<?,?> recognizer, java.lang.Object offendingSymbol, int line, int charPositionInLine, java.lang.String msg, RecognitionException e)Upon syntax error, notify any interested parties.voidBaseErrorListener. syntaxError(Recognizer<?,?> recognizer, java.lang.Object offendingSymbol, int line, int charPositionInLine, java.lang.String msg, RecognitionException e)voidConsoleErrorListener. syntaxError(Recognizer<?,?> recognizer, java.lang.Object offendingSymbol, int line, int charPositionInLine, java.lang.String msg, RecognitionException e)Upon syntax error, notify any interested parties.voidProxyErrorListener. syntaxError(Recognizer<?,?> recognizer, java.lang.Object offendingSymbol, int line, int charPositionInLine, java.lang.String msg, RecognitionException e)java.lang.StringCommonToken. toString(Recognizer r)java.lang.StringRuleContext. toString(Recognizer<?,?> recog)java.lang.StringRuleContext. toString(Recognizer<?,?> recog, RuleContext stop)Constructors in org.antlr.v4.runtime with parameters of type Recognizer Constructor Description RecognitionException(java.lang.String message, Recognizer<?,?> recognizer, IntStream input, ParserRuleContext ctx)RecognitionException(Recognizer<?,?> recognizer, IntStream input, ParserRuleContext ctx) -
Uses of Recognizer in org.antlr.v4.runtime.atn
Methods in org.antlr.v4.runtime.atn with parameters of type Recognizer Modifier and Type Method Description booleanSemanticContext.AND. eval(Recognizer<?,?> parser, RuleContext parserCallStack)For context independent predicates, we evaluate them without a local context (i.e., null context).abstract booleanSemanticContext. eval(Recognizer<?,?> parser, RuleContext parserCallStack)For context independent predicates, we evaluate them without a local context (i.e., null context).booleanSemanticContext.OR. eval(Recognizer<?,?> parser, RuleContext parserCallStack)For context independent predicates, we evaluate them without a local context (i.e., null context).booleanSemanticContext.PrecedencePredicate. eval(Recognizer<?,?> parser, RuleContext parserCallStack)booleanSemanticContext.Predicate. eval(Recognizer<?,?> parser, RuleContext parserCallStack)SemanticContextSemanticContext.AND. evalPrecedence(Recognizer<?,?> parser, RuleContext parserCallStack)SemanticContextSemanticContext. evalPrecedence(Recognizer<?,?> parser, RuleContext parserCallStack)Evaluate the precedence predicates for the context and reduce the result.SemanticContextSemanticContext.OR. evalPrecedence(Recognizer<?,?> parser, RuleContext parserCallStack)SemanticContextSemanticContext.PrecedencePredicate. evalPrecedence(Recognizer<?,?> parser, RuleContext parserCallStack)java.lang.StringATNConfig. toString(Recognizer<?,?> recog, boolean showAlt)java.lang.StringPredictionContext. toString(Recognizer<?,?> recog)java.lang.String[]PredictionContext. toStrings(Recognizer<?,?> recognizer, int currentState)java.lang.String[]PredictionContext. toStrings(Recognizer<?,?> recognizer, PredictionContext stop, int currentState) -
Uses of Recognizer in org.antlr.v4.runtime.tree.xpath
Subclasses of Recognizer in org.antlr.v4.runtime.tree.xpath Modifier and Type Class Description classXPathLexerMethods in org.antlr.v4.runtime.tree.xpath with parameters of type Recognizer Modifier and Type Method Description voidXPathLexerErrorListener. syntaxError(Recognizer<?,?> recognizer, java.lang.Object offendingSymbol, int line, int charPositionInLine, java.lang.String msg, RecognitionException e) -
Uses of Recognizer in org.antlr.v4.tool
Subclasses of Recognizer in org.antlr.v4.tool Modifier and Type Class Description classGrammarParserInterpreterA heavier weightParserInterpreterthat creates parse trees that track alternative numbers for subtree roots.
-