Uses of Class
org.sonar.sslr.channel.Channel
Packages that use Channel
Package
Description
Provides a basic framework to sequentially read any kind of character stream in order to feed a generic OUTPUT.
-
Uses of Channel in com.sonar.sslr.impl
Methods in com.sonar.sslr.impl with parameters of type ChannelModifier and TypeMethodDescriptionLexer.Builder.withChannel(Channel<Lexer> channel) Lexer2.LexerBuilder.withChannel(Channel<LexerOutput> channel) -
Uses of Channel in com.sonar.sslr.impl.channel
Subclasses of Channel in com.sonar.sslr.impl.channelModifier and TypeClassDescriptionclassAllows to skip characters, which match given regular expression.classIgnores all BOM characters.classCreates comment trivia from characters, which match given regular expression.classclassclassCreates token of specified type from characters, which match given regular expression.classCreates token with typeGenericTokenType.UNKNOWN_CHARfor any character. -
Uses of Channel in org.sonar.sslr.channel
Subclasses of Channel in org.sonar.sslr.channelModifier and TypeClassDescriptionclassclassRegexChannel<O>The RegexChannel can be used to be called each time the next characters in the character stream match a regular expressionMethods in org.sonar.sslr.channel with parameters of type ChannelModifier and TypeMethodDescriptionChannelDispatcher.Builder.addChannel(Channel channel) ChannelDispatcher.Builder.addChannels(Channel... c) Constructors in org.sonar.sslr.channel with parameters of type ChannelModifierConstructorDescriptionChannelCodeReaderFilter(Channel<O>... channels) Creates a CodeReaderFilter that will use the provided Channels to filter the character stream it gets from its reader.ChannelCodeReaderFilter(O output, Channel<O>... channels) Creates a CodeReaderFilter that will use the provided Channels to filter the character stream it gets from its reader.