类 AbstractAuxiliaryDatabaseObject

    • 构造器详细资料

      • AbstractAuxiliaryDatabaseObject

        protected AbstractAuxiliaryDatabaseObject()
      • AbstractAuxiliaryDatabaseObject

        public AbstractAuxiliaryDatabaseObject​(boolean beforeTables)
      • AbstractAuxiliaryDatabaseObject

        protected AbstractAuxiliaryDatabaseObject​(Set<String> dialectScopes)
      • AbstractAuxiliaryDatabaseObject

        protected AbstractAuxiliaryDatabaseObject​(boolean beforeTables,
                                                  Set<String> dialectScopes)
    • 方法详细资料

      • getExportIdentifier

        public String getExportIdentifier()
        从接口复制的说明: Exportable
        Get a unique identifier to make sure we are not exporting the same database structure multiple times.
        指定者:
        getExportIdentifier 在接口中 Exportable
        返回:
        The exporting identifier.
      • getDialectScopes

        public Set getDialectScopes()
      • appliesToDialect

        public boolean appliesToDialect​(Dialect dialect)
        从接口复制的说明: AuxiliaryDatabaseObject
        Does this database object apply to the given dialect?
        指定者:
        appliesToDialect 在接口中 AuxiliaryDatabaseObject
        参数:
        dialect - The dialect to check against.
        返回:
        True if this database object does apply to the given dialect.
      • beforeTablesOnCreation

        public boolean beforeTablesOnCreation()
        从接口复制的说明: AuxiliaryDatabaseObject
        Defines a simple precedence. Should creation of this auxiliary object happen before creation of tables? If true, the auxiliary object creation will happen after any explicit schema creations but before table/sequence creations; if false, the auxiliary object creation will happen after explicit schema creations and after table/sequence creations. This precedence is automatically inverted for dropping.
        指定者:
        beforeTablesOnCreation 在接口中 AuxiliaryDatabaseObject
        返回:
        true indicates this object should be created before tables; false indicates it should be created after.