| Package | Description |
|---|---|
| io.debezium.relational.ddl | |
| io.debezium.text |
| Modifier and Type | Field and Description |
|---|---|
protected TokenStream |
LegacyDdlParser.tokens |
| Modifier and Type | Method and Description |
|---|---|
DataType |
DataTypeGrammarParser.DataTypePattern.match(TokenStream stream)
Look for a matching data type on the specified token stream.
|
DataType |
DataTypeGrammarParser.DataTypePattern.match(TokenStream stream,
Consumer<ParsingException> errors)
Look for a matching data type on the specified token stream.
|
boolean |
DataTypeGrammarParser.Pattern.match(TokenStream stream,
DataTypeBuilder builder,
Consumer<ParsingException> error) |
boolean |
DataTypeGrammarParser.AndPattern.match(TokenStream stream,
DataTypeBuilder builder,
Consumer<ParsingException> error) |
boolean |
DataTypeGrammarParser.OrPattern.match(TokenStream stream,
DataTypeBuilder builder,
Consumer<ParsingException> error) |
boolean |
DataTypeGrammarParser.LiteralPattern.match(TokenStream stream,
DataTypeBuilder builder,
Consumer<ParsingException> error) |
boolean |
DataTypeGrammarParser.VariablePattern.match(TokenStream stream,
DataTypeBuilder builder,
Consumer<ParsingException> error) |
boolean |
DataTypeGrammarParser.ListPattern.match(TokenStream stream,
DataTypeBuilder builder,
Consumer<ParsingException> error) |
boolean |
DataTypeGrammarParser.OptionalPattern.match(TokenStream stream,
DataTypeBuilder builder,
Consumer<ParsingException> error) |
boolean |
DataTypeGrammarParser.LengthPattern.match(TokenStream stream,
DataTypeBuilder builder,
Consumer<ParsingException> error) |
boolean |
DataTypeGrammarParser.ScalePattern.match(TokenStream stream,
DataTypeBuilder builder,
Consumer<ParsingException> error) |
boolean |
DataTypeGrammarParser.LiteralLengthPattern.match(TokenStream stream,
DataTypeBuilder builder,
Consumer<ParsingException> error) |
boolean |
DataTypeGrammarParser.LiteralScalePattern.match(TokenStream stream,
DataTypeBuilder builder,
Consumer<ParsingException> error) |
boolean |
DataTypeGrammarParser.ArrayDimensionsPattern.match(TokenStream stream,
DataTypeBuilder builder,
Consumer<ParsingException> error) |
DataType |
DataTypeParser.parse(TokenStream stream,
Consumer<Collection<ParsingException>> errorHandler)
Examine the stream starting at its current position for a matching data type.
|
void |
LegacyDdlParser.parse(TokenStream ddlContent,
Tables databaseTables)
Examine the stream starting at its current position for DDL statements, and apply those statements to the specified
database table definitions.
|
protected DataTypeGrammarParser.Pattern |
DataTypeGrammarParser.parseArrayDimensions(TokenStream stream) |
protected void |
DdlParserSql2003.parseColumnDefinition(TokenStream.Marker start,
String columnName,
TokenStream tokens,
TableEditor table,
ColumnEditor column,
AtomicBoolean isPrimaryKey) |
protected void |
DdlParserSql2003.parseColumnOptions(TokenStream.Marker start,
String columnName,
TokenStream tokens,
ColumnEditor column) |
protected DataTypeGrammarParser.Pattern |
DataTypeGrammarParser.parseLength(TokenStream stream) |
protected DataTypeGrammarParser.Pattern |
DataTypeGrammarParser.parseLengthLiteral(TokenStream stream) |
protected DataTypeGrammarParser.Pattern |
DataTypeGrammarParser.parseMultiple(TokenStream stream) |
protected DataTypeGrammarParser.Pattern |
DataTypeGrammarParser.parseOptional(TokenStream stream,
Function<TokenStream,DataTypeGrammarParser.Pattern> inside) |
protected DataTypeGrammarParser.Pattern |
DataTypeGrammarParser.parsePattern(TokenStream stream) |
protected void |
DdlParserSql2003.parseReferencesScopeCheck(TokenStream.Marker start,
String columnName,
TokenStream tokens,
ColumnEditor column) |
protected DataTypeGrammarParser.Pattern |
DataTypeGrammarParser.parseScale(TokenStream stream) |
protected DataTypeGrammarParser.Pattern |
DataTypeGrammarParser.parseScaleLiteral(TokenStream stream) |
| Modifier and Type | Method and Description |
|---|---|
protected DataTypeGrammarParser.Pattern |
DataTypeGrammarParser.parseOptional(TokenStream stream,
Function<TokenStream,DataTypeGrammarParser.Pattern> inside) |
| Modifier and Type | Method and Description |
|---|---|
TokenStream |
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 |
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 |
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 |
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 |
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 |
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 |
TokenStream.consumeThrough(char expected)
Attempt to consume all tokens until the specified token is consumed, and then stop.
|
TokenStream |
TokenStream.consumeThrough(char expected,
char skipMatchingTokens)
Attempt to consume all tokens until the specified token is consumed, and then stop.
|
TokenStream |
TokenStream.consumeThrough(String expected)
Attempt to consume all tokens until the specified token is consumed, and then stop.
|
TokenStream |
TokenStream.consumeThrough(String expected,
String skipMatchingTokens)
Attempt to consume all tokens until the specified token is consumed, and then stop.
|
TokenStream |
TokenStream.consumeUntil(char expected)
Attempt to consume all tokens until the specified token is found, and then stop before consuming that token.
|
TokenStream |
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 |
TokenStream.consumeUntil(String expected)
Attempt to consume all tokens until the specified token is found, and then stop before consuming that token.
|
TokenStream |
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 |
TokenStream.consumeUntilEndOrOneOf(String... stopTokens)
Consume the token stream until one of the stop tokens or the end of the stream is found.
|
TokenStream |
TokenStream.start()
Begin the token stream, including (if required) the tokenization of the input content.
|
Copyright © 2018 JBoss by Red Hat. All rights reserved.