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

com.github.rrsunhome.excelsql.parser.FileParser Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package com.github.rrsunhome.excelsql.parser;

import com.github.rrsunhome.excelsql.config.BaseParserConfig;

import java.io.InputStream;
import java.util.List;

/**
 * @author : wangqijia
 * create at:  2021/10/26  下午3:58
 */
public interface FileParser {

    String[] getSupportedFileExtensions();

    boolean canParseExtension(String fileExtension);

    BaseParserConfig getDefaultParserConfig();

    List parse(InputStream is, BaseParserConfig parserConfig) throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy