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 booleaninclude(TableMapping tableMapping)Perform the check
-
-
-
Method Detail
-
include
boolean include(TableMapping tableMapping)
Perform the check- Returns:
trueindicates the table should be included;falseindicates it should not
-
-