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 TypeClassDescriptionclass
Implements an Expression-specific number state object.class
Implements an Expression-specific quote string state object.class
Implements a symbol state object.class
-
Uses of ITokenizerState in org.pipservices3.expressions.csv
Classes in org.pipservices3.expressions.csv that implement ITokenizerStateModifier and TypeClassDescriptionclass
class
Implements 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 TypeClassDescriptionclass
Implements 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 TypeInterfaceDescriptioninterface
Defines an interface for tokenizer state that processes comments.interface
Defines interface for tokenizer state that processes numbers - Integers, Floats, HexDec..interface
Defines an interface for tokenizer state that processes quoted strings.interface
Defines an interface for tokenizer state that processes delimiters.interface
Defines an interface for tokenizer state that processes whitespaces (' ', '\t')interface
Defines 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 TypeMethodDescriptionvoid
AbstractTokenizer.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 TypeClassDescriptionclass
This state will either delegate to a comment-handling state, or return a token with just a slash in it.class
This state will either delegate to a comment-handling state, or return a token with just a slash in it.class
A CommentState object returns a comment from a scanner.class
A NumberState object returns a number from a scanner.class
A quoteState returns a quoted string token from a scanner.class
The idea of a symbol is a character that stands on its own, such as an ampersand or a parenthesis.class
A whitespace state ignores whitespace (such as blanks and tabs), and returns the tokenizer's next token.class
A wordState returns a word from a scanner.