All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.abel533.database.DatabaseProcess Maven / Gradle / Ivy

package com.github.abel533.database;

import java.util.List;

/**
 * 内省数据库时的处理接口
 */
public interface DatabaseProcess {
    /**
     * 开始处理
     */
    void processStart();

    /**
     * 处理字段
     *
     * @param table
     * @param column
     */
    void processColumn(IntrospectedTable table, IntrospectedColumn column);

    /**
     * 处理表
     *
     * @param table
     */
    void processTable(IntrospectedTable table);

    /**
     * 处理完成
     *
     * @param introspectedTables
     */
    void processComplete(List introspectedTables);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy