接口 Exporter<T extends Exportable>
-
- 所有已知实现类:
StandardAuxiliaryDatabaseObjectExporter,StandardForeignKeyExporter,StandardIndexExporter,StandardSequenceExporter,StandardTableExporter,StandardUniqueKeyExporter
public interface Exporter<T extends Exportable>Defines a contract for exporting of database objects (tables, sequences, etc) for use in SQLCREATEandDROPscripts. This is an ORM-centric contract- 作者:
- Steve Ebersole
-
-
字段概要
字段 修饰符和类型 字段 说明 static String[]NO_COMMANDS
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 String[]getSqlCreateStrings(T exportable, Metadata metadata)Get the commands needed for creation.String[]getSqlDropStrings(T exportable, Metadata metadata)Get the commands needed for dropping.
-