Interface TableInclusionChecker
-
- 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 interface TableInclusionChecker
Used to check if a table should be included in the current execution
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
include(TableMapping tableMapping)
Perform the check
-
-
-
Method Detail
-
include
boolean include(TableMapping tableMapping)
Perform the check- Returns:
true
indicates the table should be included;false
indicates it should not
-
-