com.github.rrsunhome.excelsql.parser.FileParser Maven / Gradle / Ivy
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;
}