类 DefaultSchemaFilter
- java.lang.Object
-
- org.hibernate.tool.schema.internal.DefaultSchemaFilter
-
- 所有已实现的接口:
SchemaFilter
public class DefaultSchemaFilter extends Object implements SchemaFilter
Default implementation of the SchemaFilter contract, which is to just include everything.
-
-
字段概要
字段 修饰符和类型 字段 说明 static DefaultSchemaFilterINSTANCE
-
构造器概要
构造器 构造器 说明 DefaultSchemaFilter()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 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?
-
-
-
字段详细资料
-
INSTANCE
public static final DefaultSchemaFilter INSTANCE
-
-
方法详细资料
-
includeNamespace
public boolean includeNamespace(Namespace namespace)
从接口复制的说明:SchemaFilterShould the given namespace (catalog+schema) be included? Iftrue, the namespace will be further processed; iffalse, processing will skip this namespace.- 指定者:
includeNamespace在接口中SchemaFilter- 参数:
namespace- The namespace to check for inclusion.- 返回:
trueto include the namespace;falseotherwise
-
includeTable
public boolean includeTable(Table table)
从接口复制的说明:SchemaFilterShould the given table be included? Iftrue, the table will be further processed; iffalse, processing will skip this table.- 指定者:
includeTable在接口中SchemaFilter- 参数:
table- The table to check for inclusion- 返回:
trueto include the table;falseotherwise
-
includeSequence
public boolean includeSequence(Sequence sequence)
从接口复制的说明:SchemaFilterShould the given sequence be included? Iftrue, the sequence will be further processed; iffalse, processing will skip this sequence.- 指定者:
includeSequence在接口中SchemaFilter- 参数:
sequence- The sequence to check for inclusion- 返回:
trueto include the sequence;falseotherwise
-
-