Package io.debezium.relational
Class TableIdParser.TableIdTokenizer
java.lang.Object
io.debezium.relational.TableIdParser.TableIdTokenizer
- All Implemented Interfaces:
TokenStream.Tokenizer
- Enclosing class:
TableIdParser
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
tokenize
(TokenStream.CharacterStream input, TokenStream.Tokens tokens) Process the supplied characters and construct the appropriateTokenStream.Token
objects.
-
Field Details
-
identifier
-
predicates
-
-
Constructor Details
-
TableIdTokenizer
TableIdTokenizer(String identifier, TableIdPredicates predicates)
-
-
Method Details
-
tokenize
public void tokenize(TokenStream.CharacterStream input, TokenStream.Tokens tokens) throws ParsingException Description copied from interface:TokenStream.Tokenizer
Process the supplied characters and construct the appropriateTokenStream.Token
objects.- Specified by:
tokenize
in interfaceTokenStream.Tokenizer
- Parameters:
input
- the character input stream; never nulltokens
- the factory forTokenStream.Token
objects, which records the order in which the tokens are created- Throws:
ParsingException
- if there is an error while processing the character stream (e.g., a quote is not closed, etc.)
-