Uses of Interface
org.pipservices3.expressions.tokenizers.ITokenizer
Packages that use ITokenizer
Package
Description
-
Uses of ITokenizer in org.pipservices3.expressions.calculator.tokenizers
Classes in org.pipservices3.expressions.calculator.tokenizers that implement ITokenizerModifier and TypeClassDescriptionclass
Implement tokenizer to perform lexical analysis for expressions.Methods in org.pipservices3.expressions.calculator.tokenizers with parameters of type ITokenizerModifier and TypeMethodDescriptionExpressionNumberState.nextToken
(IScanner scanner, ITokenizer tokenizer) Gets the next token from the stream started from the character linked to this state.ExpressionQuoteState.nextToken
(IScanner scanner, ITokenizer tokenizer) Gets the next token from the stream started from the character linked to this state.ExpressionWordState.nextToken
(IScanner scanner, ITokenizer tokenizer) Gets the next token from the stream started from the character linked to this state. -
Uses of ITokenizer in org.pipservices3.expressions.csv
Classes in org.pipservices3.expressions.csv that implement ITokenizerMethods in org.pipservices3.expressions.csv with parameters of type ITokenizerModifier and TypeMethodDescriptionCsvQuoteState.nextToken
(IScanner scanner, ITokenizer tokenizer) Gets the next token from the stream started from the character linked to this state.CsvSymbolState.nextToken
(IScanner scanner, ITokenizer tokenizer) -
Uses of ITokenizer in org.pipservices3.expressions.mustache.tokenizers
Classes in org.pipservices3.expressions.mustache.tokenizers that implement ITokenizerMethods in org.pipservices3.expressions.mustache.tokenizers with parameters of type ITokenizerModifier and TypeMethodDescriptionMustacheSpecialState.nextToken
(IScanner scanner, ITokenizer tokenizer) Gets the next token from the stream started from the character linked to this state. -
Uses of ITokenizer in org.pipservices3.expressions.tokenizers
Classes in org.pipservices3.expressions.tokenizers that implement ITokenizerMethods in org.pipservices3.expressions.tokenizers with parameters of type ITokenizerModifier and TypeMethodDescriptionITokenizerState.nextToken
(IScanner scanner, ITokenizer tokenizer) Gets the next token from the stream started from the character linked to this state. -
Uses of ITokenizer in org.pipservices3.expressions.tokenizers.generic
Classes in org.pipservices3.expressions.tokenizers.generic that implement ITokenizerMethods in org.pipservices3.expressions.tokenizers.generic with parameters of type ITokenizerModifier and TypeMethodDescriptionCCommentState.nextToken
(IScanner scanner, ITokenizer tokenizer) Either delegate to a comment-handling state, or return a token with just a slash in it.CppCommentState.nextToken
(IScanner scanner, ITokenizer tokenizer) Either delegate to a comment-handling state, or return a token with just a slash in it.GenericCommentState.nextToken
(IScanner scanner, ITokenizer tokenizer) Either delegate to a comment-handling state, or return a token with just a slash in it.GenericNumberState.nextToken
(IScanner scanner, ITokenizer tokenizer) Gets the next token from the stream started from the character linked to this state.GenericQuoteState.nextToken
(IScanner scanner, ITokenizer tokenizer) Return a quoted string token from a scanner.GenericSymbolState.nextToken
(IScanner scanner, ITokenizer tokenizer) Return a symbol token from a scanner.GenericWhitespaceState.nextToken
(IScanner scanner, ITokenizer tokenizer) Ignore whitespace (such as blanks and tabs), and return the tokenizer's next token.GenericWordState.nextToken
(IScanner scanner, ITokenizer tokenizer) Ignore word (such as blanks and tabs), and return the tokenizer's next token.