Uses of Interface
org.pipservices3.expressions.tokenizers.ITokenizer
-
-
Uses of ITokenizer in org.pipservices3.expressions.calculator.tokenizers
Classes in org.pipservices3.expressions.calculator.tokenizers that implement ITokenizer Modifier and Type Class Description classExpressionTokenizerImplement tokenizer to perform lexical analysis for expressions.Methods in org.pipservices3.expressions.calculator.tokenizers with parameters of type ITokenizer Modifier and Type Method Description TokenExpressionNumberState. nextToken(IScanner scanner, ITokenizer tokenizer)Gets the next token from the stream started from the character linked to this state.TokenExpressionQuoteState. nextToken(IScanner scanner, ITokenizer tokenizer)Gets the next token from the stream started from the character linked to this state.TokenExpressionWordState. 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 ITokenizer Modifier and Type Class Description classCsvTokenizerImplements a tokenizer class for CSV files.Methods in org.pipservices3.expressions.csv with parameters of type ITokenizer Modifier and Type Method Description TokenCsvQuoteState. nextToken(IScanner scanner, ITokenizer tokenizer)Gets the next token from the stream started from the character linked to this state.TokenCsvSymbolState. nextToken(IScanner scanner, ITokenizer tokenizer) -
Uses of ITokenizer in org.pipservices3.expressions.mustache.tokenizers
Classes in org.pipservices3.expressions.mustache.tokenizers that implement ITokenizer Modifier and Type Class Description classMustacheTokenizerMethods in org.pipservices3.expressions.mustache.tokenizers with parameters of type ITokenizer Modifier and Type Method Description TokenMustacheSpecialState. 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 ITokenizer Modifier and Type Class Description classAbstractTokenizerImplements an abstract tokenizer class.Methods in org.pipservices3.expressions.tokenizers with parameters of type ITokenizer Modifier and Type Method Description TokenITokenizerState. 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 ITokenizer Modifier and Type Class Description classGenericTokenizerImplements a default tokenizer class.Methods in org.pipservices3.expressions.tokenizers.generic with parameters of type ITokenizer Modifier and Type Method Description TokenCCommentState. nextToken(IScanner scanner, ITokenizer tokenizer)Either delegate to a comment-handling state, or return a token with just a slash in it.TokenCppCommentState. nextToken(IScanner scanner, ITokenizer tokenizer)Either delegate to a comment-handling state, or return a token with just a slash in it.TokenGenericCommentState. nextToken(IScanner scanner, ITokenizer tokenizer)Either delegate to a comment-handling state, or return a token with just a slash in it.TokenGenericNumberState. nextToken(IScanner scanner, ITokenizer tokenizer)Gets the next token from the stream started from the character linked to this state.TokenGenericQuoteState. nextToken(IScanner scanner, ITokenizer tokenizer)Return a quoted string token from a scanner.TokenGenericSymbolState. nextToken(IScanner scanner, ITokenizer tokenizer)Return a symbol token from a scanner.TokenGenericWhitespaceState. nextToken(IScanner scanner, ITokenizer tokenizer)Ignore whitespace (such as blanks and tabs), and return the tokenizer's next token.TokenGenericWordState. nextToken(IScanner scanner, ITokenizer tokenizer)Ignore word (such as blanks and tabs), and return the tokenizer's next token.
-