Class DefaultSchemaFilter
java.lang.Object
org.hibernate.tool.schema.internal.DefaultSchemaFilter
- All Implemented Interfaces:
SchemaFilter
Default implementation of the SchemaFilter contract, which is to just include everything.
-
Field Summary
FieldsFields inherited from interface org.hibernate.tool.schema.spi.SchemaFilter
ALL
-
Constructor Summary
Constructors -
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
-
INSTANCE
-
-
Constructor Details
-
DefaultSchemaFilter
public DefaultSchemaFilter()
-
-
Method Details
-
includeNamespace
Description copied from interface:SchemaFilter
Should the given namespace (catalog+schema) be included? Iftrue
, the namespace will be further processed; iffalse
, processing will skip this namespace.- Specified by:
includeNamespace
in interfaceSchemaFilter
- Parameters:
namespace
- The namespace to check for inclusion.- Returns:
true
to include the namespace;false
otherwise
-
includeTable
Description copied from interface:SchemaFilter
Should the given table be included? Iftrue
, the table will be further processed; iffalse
, processing will skip this table.- Specified by:
includeTable
in interfaceSchemaFilter
- Parameters:
table
- The table to check for inclusion- Returns:
true
to include the table;false
otherwise
-
includeSequence
Description copied from interface:SchemaFilter
Should the given sequence be included? Iftrue
, the sequence will be further processed; iffalse
, processing will skip this sequence.- Specified by:
includeSequence
in interfaceSchemaFilter
- Parameters:
sequence
- The sequence to check for inclusion- Returns:
true
to include the sequence;false
otherwise
-