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 TypeMethodDescriptionboolean
includeNamespace
(Namespace namespace) Should the given namespace (catalog+schema) be included? Iftrue
, the namespace will be further processed; iffalse
, processing will skip this namespace.boolean
includeSequence
(Sequence sequence) Should the given sequence be included? Iftrue
, the sequence will be further processed; iffalse
, processing will skip this sequence.boolean
includeTable
(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:
true
to include the namespace;false
otherwise
-
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:
true
to include the table;false
otherwise
-
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:
true
to include the sequence;false
otherwise
-