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 interface
CharStream
A source of characters for an ANTLR lexer.interface
TokenStream
Classes in org.antlr.v4.runtime that implement IntStream Modifier and Type Class Description class
ANTLRFileStream
Deprecated.as of 4.7 Please useCharStreams
interface.class
ANTLRInputStream
Deprecated.as of 4.7 Please useCharStreams
interface.class
BufferedTokenStream
This implementation ofTokenStream
loads tokens from aTokenSource
on-demand, and places the tokens in a buffer to provide access to any previous token by index.class
CodePointCharStream
Alternative toANTLRInputStream
which treats the input as a series of Unicode code points, instead of a series of UTF-16 code units.class
CommonTokenStream
This class extendsBufferedTokenStream
with functionality to filter token streams to tokens on a particular channel (tokens whereToken.getChannel()
returns a particular value).class
UnbufferedCharStream
Do not buffer up the entire char stream.class
UnbufferedTokenStream<T extends Token>
Methods in org.antlr.v4.runtime that return IntStream Modifier and Type Method Description IntStream
RecognitionException. getInputStream()
Gets the input stream which is the symbol source for the recognizer where this exception was thrown.abstract IntStream
Recognizer. getInputStream()
Methods in org.antlr.v4.runtime with parameters of type IntStream Modifier and Type Method Description void
Lexer. setInputStream(IntStream input)
Set the char stream and reset the lexervoid
Parser. setInputStream(IntStream input)
abstract void
Recognizer. 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)
-