com.fredericboisguerin.excel.reader.ExcelReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-reader-writer Show documentation
Show all versions of excel-reader-writer Show documentation
A library to read/write excel files with simple descriptions of the model
The newest version!
package com.fredericboisguerin.excel.reader;
import com.fredericboisguerin.excel.common.ExcelRow;
import java.io.InputStream;
import java.util.List;
import java.util.Map;
/**
* Created by fboisguerin on 22/07/2015.
*/
public interface ExcelReader {
/**
* Reads an {@link InputStream} representing an XLS file
*
* @param inputStream the file to read
* @return a {@link Map} which keys are the indexes of the sheets (indexed from 0)
* @throws ExcelReaderException if something goes wrong while parsing the file
*/
Map> readWorkbook(InputStream inputStream) throws ExcelReaderException;
}