Uses of Class
io.debezium.text.TokenStream

Packages that use TokenStream
Package
Description
 
  • Uses of TokenStream in io.debezium.text

    Methods in io.debezium.text that return TokenStream
    Modifier and Type
    Method
    Description
    TokenStream.consume(char expected)
    Attempt to consume this current token as long as it matches the expected character, or throw an exception if the token does not match.
    TokenStream.consume(int expectedType)
    Attempt to consume this current token as long as it matches the expected character, or throw an exception if the token does not match.
    TokenStream.consume(Iterable<String> nextTokens)
    Attempt to consume this current token as the next tokens as long as they match the expected values, or throw an exception if the token does not match.
    TokenStream.consume(String expected)
    Attempt to consume this current token as long as it matches the expected value, or throw an exception if the token does not match.
    TokenStream.consume(String[] nextTokens)
    Attempt to consume this current token as the next tokens as long as they match the expected values, or throw an exception if the token does not match.
    TokenStream.consume(String expected, String... expectedForNextTokens)
    Attempt to consume this current token as the next tokens as long as they match the expected values, or throw an exception if the token does not match.
    TokenStream.consumeThrough(char expected)
    Attempt to consume all tokens until the specified token is consumed, and then stop.
    TokenStream.consumeThrough(char expected, char skipMatchingTokens)
    Attempt to consume all tokens until the specified token is consumed, and then stop.
    TokenStream.consumeThrough(String expected)
    Attempt to consume all tokens until the specified token is consumed, and then stop.
    TokenStream.consumeThrough(String expected, String skipMatchingTokens)
    Attempt to consume all tokens until the specified token is consumed, and then stop.
    TokenStream.consumeUntil(char expected)
    Attempt to consume all tokens until the specified token is found, and then stop before consuming that token.
    TokenStream.consumeUntil(char expected, char skipMatchingTokens)
    Attempt to consume all tokens until the specified token is found, and then stop before consuming that token.
    TokenStream.consumeUntil(String expected)
    Attempt to consume all tokens until the specified token is found, and then stop before consuming that token.
    TokenStream.consumeUntil(String expected, String... skipMatchingTokens)
    Attempt to consume all tokens until the specified token is found, and then stop before consuming that token.
    TokenStream.consumeUntilEndOrOneOf(String... stopTokens)
    Consume the token stream until one of the stop tokens or the end of the stream is found.
    TokenStream.start()
    Begin the token stream, including (if required) the tokenization of the input content.