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 TypeInterfaceDescriptioninterfaceA source of characters for an ANTLR lexer.interfaceClasses in org.antlr.v4.runtime that implement IntStreamModifier and TypeClassDescriptionclassDeprecated.classDeprecated.as of 4.7 Please useCharStreamsinterface.classThis implementation ofTokenStreamloads tokens from aTokenSourceon-demand, and places the tokens in a buffer to provide access to any previous token by index.classAlternative toANTLRInputStreamwhich treats the input as a series of Unicode code points, instead of a series of UTF-16 code units.private static final classprivate static final classprivate static final classclassThis class extendsBufferedTokenStreamwith functionality to filter token streams to tokens on a particular channel (tokens whereToken.getChannel()returns a particular value).classDo not buffer up the entire char stream.classUnbufferedTokenStream<T extends Token>Fields in org.antlr.v4.runtime declared as IntStreamMethods 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 IntStreamRecognizer.getInputStream()Methods in org.antlr.v4.runtime with parameters of type IntStreamModifier and TypeMethodDescriptionvoidLexer.setInputStream(IntStream input) Set the char stream and reset the lexerfinal voidParser.setInputStream(IntStream input) abstract voidRecognizer.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)
CharStreamsinterface.