Package org.hibernate.tool.schema.spi
Interface ContributableMatcher
-
- 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 ContributableMatcher
Matcher for whether tables and sequences should be included based on itsContributable.getContributor()
-
-
Field Summary
Fields Modifier and Type Field Description static ContributableMatcher
ALL
Matches everythingstatic ContributableMatcher
NONE
Matches nothing
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
matches(ContributableDatabaseObject contributed)
Does the given `contributed` match this matcher?
-
-
-
Field Detail
-
ALL
static final ContributableMatcher ALL
Matches everything
-
NONE
static final ContributableMatcher NONE
Matches nothing
-
-
Method Detail
-
matches
boolean matches(ContributableDatabaseObject contributed)
Does the given `contributed` match this matcher?
-
-