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 TypeMethodDescriptionbooleanincludeNamespace(Namespace namespace) Should the given namespace (catalog+schema) be included?booleanincludeSequence(Sequence sequence) Should the given sequence be included?booleanincludeTable(Table table) Should the given table be included?
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
DefaultSchemaFilter
public DefaultSchemaFilter()
-
-
Method Details
-
includeNamespace
Description copied from interface:SchemaFilterShould the given namespace (catalog+schema) be included? Iftrue, the namespace will be further processed; iffalse, processing will skip this namespace.- Specified by:
includeNamespacein interfaceSchemaFilter- Parameters:
namespace- The namespace to check for inclusion.- Returns:
trueto include the namespace;falseotherwise
-
includeTable
Description copied from interface:SchemaFilterShould the given table be included? Iftrue, the table will be further processed; iffalse, processing will skip this table.- Specified by:
includeTablein interfaceSchemaFilter- Parameters:
table- The table to check for inclusion- Returns:
trueto include the table;falseotherwise
-
includeSequence
Description copied from interface:SchemaFilterShould the given sequence be included? Iftrue, the sequence will be further processed; iffalse, processing will skip this sequence.- Specified by:
includeSequencein interfaceSchemaFilter- Parameters:
sequence- The sequence to check for inclusion- Returns:
trueto include the sequence;falseotherwise
-