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

com.wm.df.sdk.component.AbstractParser Maven / Gradle / Ivy

There is a newer version: 0.2.17
Show newest version
package com.wm.df.sdk.component;

import com.wm.df.sdk.component.config.OutputDataItem;

import java.util.List;
import java.util.Map;

/**
 * 解析器组件抽象类
 *
 * @author wangjinnan
 */
public abstract class AbstractParser extends AbstractComponent {

    /**
     * 解析器核心方法.
     *
     * @param fromData 从上个组件拿到的结构化输出数据集合.
     * @throws Throwable 组件异常.
     */
    public abstract void parse(List> fromData) throws Throwable;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy