接口 SchemaFilter
-
- 所有已知实现类:
DefaultSchemaFilter
public interface SchemaFilterDefines a filter for Hibernate's schema tooling.- 从以下版本开始:
- 5.1
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 booleanincludeNamespace(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?
-
-
-
方法详细资料
-
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.- 参数:
namespace- The namespace to check for inclusion.- 返回:
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.- 参数:
table- The table to check for inclusion- 返回:
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.- 参数:
sequence- The sequence to check for inclusion- 返回:
trueto include the sequence;falseotherwise
-
-