Package io.debezium.text
Class TokenStream.CaseSensitiveTokenFactory
java.lang.Object
io.debezium.text.TokenStream.TokenFactory
io.debezium.text.TokenStream.CaseSensitiveTokenFactory
- All Implemented Interfaces:
TokenStream.Tokens
- Enclosing class:
TokenStream
-
Field Summary
Fields inherited from class io.debezium.text.TokenStream.TokenFactory
tokens
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class io.debezium.text.TokenStream.TokenFactory
getTokens
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.debezium.text.TokenStream.Tokens
addToken, addToken
-
Constructor Details
-
CaseSensitiveTokenFactory
public CaseSensitiveTokenFactory()
-
-
Method Details
-
addToken
Description copied from interface:TokenStream.Tokens
Create a single- or multi-character token with the supplied type and with the characters in the range given by the starting and ending index in the character stream. The character at the ending index is not included in the token (as this is standard practice when using 0-based indexes).- Parameters:
position
- the position (line and column numbers) of this new token; may not be nullstartIndex
- the index of the first character to appear in the token; must be a valid index in the streamendIndex
- the index just past the last character to appear in the token; must be a valid index in the streamtype
- the type of the token
-