Package org.hibernate.tool.schema.spi
Interface SchemaFilter
- All Known Implementing Classes:
DefaultSchemaFilter
Defines a filter for Hibernate's schema tooling.
- Since:
- 5.1
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionbooleanincludeNamespace(Namespace namespace) Should the given namespace (catalog+schema) be included? Iftrue, the namespace will be further processed; iffalse, processing will skip this namespace.booleanincludeSequence(Sequence sequence) Should the given sequence be included? Iftrue, the sequence will be further processed; iffalse, processing will skip this sequence.booleanincludeTable(Table table) Should the given table be included? Iftrue, the table will be further processed; iffalse, processing will skip this table.
-
Field Details
-
ALL
Matches everything
-
-
Method Details
-
includeNamespace
Should the given namespace (catalog+schema) be included? Iftrue, the namespace will be further processed; iffalse, processing will skip this namespace.- Parameters:
namespace- The namespace to check for inclusion.- Returns:
trueto include the namespace;falseotherwise
-
includeTable
Should the given table be included? Iftrue, the table will be further processed; iffalse, processing will skip this table.- Parameters:
table- The table to check for inclusion- Returns:
trueto include the table;falseotherwise
-
includeSequence
Should the given sequence be included? Iftrue, the sequence will be further processed; iffalse, processing will skip this sequence.- Parameters:
sequence- The sequence to check for inclusion- Returns:
trueto include the sequence;falseotherwise
-