Uses of Class
io.debezium.text.ParsingException
Packages that use ParsingException
Package
Description
-
Uses of ParsingException in io.debezium.relational
Methods in io.debezium.relational that throw ParsingExceptionModifier and TypeMethodDescriptionvoidTableIdParser.TableIdTokenizer.tokenize(TokenStream.CharacterStream input, TokenStream.Tokens tokens) -
Uses of ParsingException in io.debezium.relational.ddl
Methods in io.debezium.relational.ddl that return types with arguments of type ParsingExceptionModifier and TypeMethodDescriptionprotected Collection<ParsingException>AbstractDdlParser.accumulateParsingFailure(MultipleParsingExceptions e, Collection<ParsingException> list) Utility method to accumulate a parsing exception.static Collection<ParsingException>AbstractDdlParser.accumulateParsingFailure(ParsingException e, Collection<ParsingException> list) Utility method to accumulate a parsing exception.Methods in io.debezium.relational.ddl with parameters of type ParsingExceptionModifier and TypeMethodDescriptionstatic Collection<ParsingException>AbstractDdlParser.accumulateParsingFailure(ParsingException e, Collection<ParsingException> list) Utility method to accumulate a parsing exception.Method parameters in io.debezium.relational.ddl with type arguments of type ParsingExceptionModifier and TypeMethodDescriptionprotected Collection<ParsingException>AbstractDdlParser.accumulateParsingFailure(MultipleParsingExceptions e, Collection<ParsingException> list) Utility method to accumulate a parsing exception.static Collection<ParsingException>AbstractDdlParser.accumulateParsingFailure(ParsingException e, Collection<ParsingException> list) Utility method to accumulate a parsing exception. -
Uses of ParsingException in io.debezium.text
Fields in io.debezium.text with type parameters of type ParsingExceptionModifier and TypeFieldDescriptionprivate final Collection<ParsingException>MultipleParsingExceptions.errorsMethods in io.debezium.text that return types with arguments of type ParsingExceptionModifier and TypeMethodDescriptionMultipleParsingExceptions.getErrors()Get the set of parsing exceptions.Method parameters in io.debezium.text with type arguments of type ParsingExceptionModifier and TypeMethodDescriptionvoidMultipleParsingExceptions.forEachError(Consumer<ParsingException> action) Methods in io.debezium.text that throw ParsingExceptionModifier and TypeMethodDescriptionTokenStream.consume()Return the value of this token and move to the next token.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.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.Attempt to consume this current token as long as it matches the expected value, or throw an exception if the token does not match.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.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.protected voidTokenStream.throwNoMoreContent()voidTokenStream.BasicTokenizer.tokenize(TokenStream.CharacterStream input, TokenStream.Tokens tokens) voidTokenStream.Tokenizer.tokenize(TokenStream.CharacterStream input, TokenStream.Tokens tokens) Process the supplied characters and construct the appropriateTokenStream.Tokenobjects.Constructor parameters in io.debezium.text with type arguments of type ParsingExceptionModifierConstructorDescriptionMultipleParsingExceptions(String message, Collection<ParsingException> errors) -
Uses of ParsingException in io.debezium.util
Methods in io.debezium.util that throw ParsingExceptionModifier and TypeMethodDescriptionvoidStrings.RegExSplitter.tokenize(TokenStream.CharacterStream input, TokenStream.Tokens tokens)