Package org.hibernate.tool.schema.spi
Interface SchemaFilter
-
public interface SchemaFilterDefines a filter for Hibernate's schema tooling.- Since:
- 5.1
-
-
Field Summary
Fields Modifier and Type Field Description static SchemaFilterALLMatches everything
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanincludeNamespace(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 Detail
-
ALL
static final SchemaFilter ALL
Matches everything
-
-
Method Detail
-
includeNamespace
boolean includeNamespace(Namespace namespace)
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
boolean includeTable(Table table)
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
boolean includeSequence(Sequence sequence)
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
-
-