Uses of Interface
org.pipservices3.expressions.tokenizers.ITokenizerState
Packages that use ITokenizerState
Package
Description
-
Uses of ITokenizerState in org.pipservices3.expressions.calculator.tokenizers
Classes in org.pipservices3.expressions.calculator.tokenizers that implement ITokenizerStateModifier and TypeClassDescriptionclassImplements an Expression-specific number state object.classImplements an Expression-specific quote string state object.classImplements a symbol state object.class -
Uses of ITokenizerState in org.pipservices3.expressions.csv
Classes in org.pipservices3.expressions.csv that implement ITokenizerStateModifier and TypeClassDescriptionclassclassImplements a symbol state to tokenize delimiters in CSV streams.class -
Uses of ITokenizerState in org.pipservices3.expressions.mustache.tokenizers
Classes in org.pipservices3.expressions.mustache.tokenizers that implement ITokenizerStateModifier and TypeClassDescriptionclassImplements a quote string state object for Mustache templates. -
Uses of ITokenizerState in org.pipservices3.expressions.tokenizers
Subinterfaces of ITokenizerState in org.pipservices3.expressions.tokenizersModifier and TypeInterfaceDescriptioninterfaceDefines an interface for tokenizer state that processes comments.interfaceDefines interface for tokenizer state that processes numbers - Integers, Floats, HexDec..interfaceDefines an interface for tokenizer state that processes quoted strings.interfaceDefines an interface for tokenizer state that processes delimiters.interfaceDefines an interface for tokenizer state that processes whitespaces (' ', '\t')interfaceDefines an interface for tokenizer state that processes words, identificators or keywordsMethods in org.pipservices3.expressions.tokenizers that return ITokenizerStateMethods in org.pipservices3.expressions.tokenizers with parameters of type ITokenizerStateModifier and TypeMethodDescriptionvoidAbstractTokenizer.setCharacterState(int fromSymbol, int toSymbol, ITokenizerState state) -
Uses of ITokenizerState in org.pipservices3.expressions.tokenizers.generic
Classes in org.pipservices3.expressions.tokenizers.generic that implement ITokenizerStateModifier and TypeClassDescriptionclassThis state will either delegate to a comment-handling state, or return a token with just a slash in it.classThis state will either delegate to a comment-handling state, or return a token with just a slash in it.classA CommentState object returns a comment from a scanner.classA NumberState object returns a number from a scanner.classA quoteState returns a quoted string token from a scanner.classThe idea of a symbol is a character that stands on its own, such as an ampersand or a parenthesis.classA whitespace state ignores whitespace (such as blanks and tabs), and returns the tokenizer's next token.classA wordState returns a word from a scanner.