Uses of Interface
org.antlr.runtime.CharStream
-
Packages that use CharStream Package Description org.antlr.runtime org.antlr.runtime.debug -
-
Uses of CharStream in org.antlr.runtime
Classes in org.antlr.runtime that implement CharStream Modifier and Type Class Description classANTLRFileStreamThis is a char buffer stream that is loaded from a file all at once when you construct the object.classANTLRInputStreamA kind of ReaderStream that pulls from an InputStream.classANTLRReaderStreamVacuum all input from a Reader and then treat it like a StringStream.classANTLRStringStreamA pretty quick CharStream that pulls all data from an array directly.Fields in org.antlr.runtime declared as CharStream Modifier and Type Field Description protected CharStreamCommonToken. inputprotected CharStreamLexer. inputWhere is the lexer drawing characters from?Methods in org.antlr.runtime that return CharStream Modifier and Type Method Description CharStreamLexer. getCharStream()CharStreamClassicToken. getInputStream()CharStreamCommonToken. getInputStream()CharStreamToken. getInputStream()From what character stream was this token created? You don't have to implement but it's nice to know where a Token comes from if you have include files etc...Methods in org.antlr.runtime with parameters of type CharStream Modifier and Type Method Description voidLexer. setCharStream(CharStream input)Set the char stream and reset the lexervoidClassicToken. setInputStream(CharStream input)voidCommonToken. setInputStream(CharStream input)voidToken. setInputStream(CharStream input)Constructors in org.antlr.runtime with parameters of type CharStream Constructor Description CommonToken(CharStream input, int type, int channel, int start, int stop)Lexer(CharStream input)Lexer(CharStream input, RecognizerSharedState state) -
Uses of CharStream in org.antlr.runtime.debug
Methods in org.antlr.runtime.debug that return CharStream Modifier and Type Method Description CharStreamRemoteDebugEventSocketListener.ProxyToken. getInputStream()Methods in org.antlr.runtime.debug with parameters of type CharStream Modifier and Type Method Description voidRemoteDebugEventSocketListener.ProxyToken. setInputStream(CharStream input)
-