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

com.fredericboisguerin.excel.reader.ExcelReader Maven / Gradle / Ivy

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;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy