接口 SchemaFilter

  • 所有已知实现类:
    DefaultSchemaFilter

    public interface SchemaFilter
    Defines a filter for Hibernate's schema tooling.
    从以下版本开始:
    5.1
    • 方法详细资料

      • includeNamespace

        boolean includeNamespace​(Namespace namespace)
        Should the given namespace (catalog+schema) be included? If true, the namespace will be further processed; if false, processing will skip this namespace.
        参数:
        namespace - The namespace to check for inclusion.
        返回:
        true to include the namespace; false otherwise
      • includeTable

        boolean includeTable​(Table table)
        Should the given table be included? If true, the table will be further processed; if false, processing will skip this table.
        参数:
        table - The table to check for inclusion
        返回:
        true to include the table; false otherwise
      • includeSequence

        boolean includeSequence​(Sequence sequence)
        Should the given sequence be included? If true, the sequence will be further processed; if false, processing will skip this sequence.
        参数:
        sequence - The sequence to check for inclusion
        返回:
        true to include the sequence; false otherwise