Uses of Interface
org.antlr.v4.runtime.IntStream
-
Packages that use IntStream Package Description org.antlr.v4.runtime -
-
Uses of IntStream in org.antlr.v4.runtime
Subinterfaces of IntStream in org.antlr.v4.runtime Modifier and Type Interface Description interfaceCharStreamA source of characters for an ANTLR lexer.interfaceTokenStreamClasses in org.antlr.v4.runtime that implement IntStream Modifier and Type Class Description classANTLRFileStreamDeprecated.as of 4.7 Please useCharStreamsinterface.classANTLRInputStreamDeprecated.as of 4.7 Please useCharStreamsinterface.classBufferedTokenStreamThis implementation ofTokenStreamloads tokens from aTokenSourceon-demand, and places the tokens in a buffer to provide access to any previous token by index.classCodePointCharStreamAlternative toANTLRInputStreamwhich treats the input as a series of Unicode code points, instead of a series of UTF-16 code units.classCommonTokenStreamThis class extendsBufferedTokenStreamwith functionality to filter token streams to tokens on a particular channel (tokens whereToken.getChannel()returns a particular value).classUnbufferedCharStreamDo not buffer up the entire char stream.classUnbufferedTokenStream<T extends Token>Methods in org.antlr.v4.runtime that return IntStream Modifier and Type Method Description IntStreamRecognitionException. getInputStream()Gets the input stream which is the symbol source for the recognizer where this exception was thrown.abstract IntStreamRecognizer. getInputStream()Methods in org.antlr.v4.runtime with parameters of type IntStream Modifier and Type Method Description voidLexer. setInputStream(IntStream input)Set the char stream and reset the lexervoidParser. setInputStream(IntStream input)abstract voidRecognizer. setInputStream(IntStream input)Constructors in org.antlr.v4.runtime with parameters of type IntStream Constructor Description RecognitionException(String message, Recognizer<?,?> recognizer, IntStream input, ParserRuleContext ctx)RecognitionException(Recognizer<?,?> recognizer, IntStream input, ParserRuleContext ctx)
-