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

com.kaka.numerical.IAnalyzer Maven / Gradle / Ivy

The newest version!
package com.kaka.numerical;

/**
 * 数据单元分析匹配
 *
 * @param  泛型参数
 * @author zkpursuit
 */
public interface IAnalyzer {

    /**
     * 设置源数据
     *
     * @param sourceData 源数据
     */
    void setSourceData(V sourceData);

    /**
     * 根据数据单元名查找数据单元内容
     *
     * @param title 数据单元名
     * @return 数据单元内容
     */
    String getContent(String title);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy