Package io.debezium.relational
Interface Tables.TableFilter
- All Superinterfaces:
DataCollectionFilters.DataCollectionFilter<TableId>
- Enclosing class:
- Tables
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public static interface Tables.TableFilter
extends DataCollectionFilters.DataCollectionFilter<TableId>
A filter for tables.
-
Method Summary
Modifier and TypeMethodDescriptionstatic Tables.TableFilterfromPredicate(Predicate<TableId> predicate) Creates aTables.TableFilterfrom the given predicate.static Tables.TableFilterCreates aTables.TableFilterthat includes all tables.booleanisIncluded(TableId tableId) Determines whether the given table should be included in the currentDatabaseSchema.
-
Method Details
-
isIncluded
Determines whether the given table should be included in the currentDatabaseSchema.- Specified by:
isIncludedin interfaceDataCollectionFilters.DataCollectionFilter<TableId>
-
fromPredicate
Creates aTables.TableFilterfrom the given predicate. -
includeAll
Creates aTables.TableFilterthat includes all tables.
-