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

com.github.sourcegroove.batch.item.file.excel.ExcelItemReader Maven / Gradle / Ivy

There is a newer version: 1.3.21
Show newest version
package com.github.sourcegroove.batch.item.file.excel;

import com.github.sourcegroove.batch.item.file.LayoutItemReader;

import java.util.Set;

/**
 * Note that dates will be serialized as ISO dates, so you're date editors will need to use that format.
 *
 * If you use the ExcelLayout to build your reader/writers, it will add editors for LocalDate and LocalDateTime using
 * this format by default.
 *
 * @param  record type
 */
public interface ExcelItemReader extends LayoutItemReader {
    void setLinesToSkip(int linesToSkip);
    void setSheetsToRead(Set sheetsToRead);
    void setRowMapper(ExcelRowMapper rowMapper);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy