Uses of Interface
org.antlr.v4.runtime.IntStream
Packages that use IntStream
-
Uses of IntStream in org.antlr.v4.runtime
Subinterfaces of IntStream in org.antlr.v4.runtimeModifier and TypeInterfaceDescriptioninterface
A source of characters for an ANTLR lexer.interface
Classes in org.antlr.v4.runtime that implement IntStreamModifier and TypeClassDescriptionclass
Deprecated.class
Deprecated.as of 4.7 Please useCharStreams
interface.class
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
Alternative toANTLRInputStream
which treats the input as a series of Unicode code points, instead of a series of UTF-16 code units.class
This class extendsBufferedTokenStream
with functionality to filter token streams to tokens on a particular channel (tokens whereToken.getChannel()
returns a particular value).class
Do not buffer up the entire char stream.class
UnbufferedTokenStream<T extends Token>
Methods in org.antlr.v4.runtime that return IntStreamModifier and TypeMethodDescriptionRecognitionException.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 IntStreamModifier and TypeMethodDescriptionvoid
Lexer.setInputStream
(IntStream input) Set the char stream and reset the lexerfinal void
Parser.setInputStream
(IntStream input) abstract void
Recognizer.setInputStream
(IntStream input) Constructors in org.antlr.v4.runtime with parameters of type IntStreamModifierConstructorDescriptionRecognitionException
(String message, Recognizer<?, ?> recognizer, IntStream input, ParserRuleContext ctx) RecognitionException
(Recognizer<?, ?> recognizer, IntStream input, ParserRuleContext ctx)
CharStreams
interface.