com.github.sourcegroove.batch.item.file.excel.ExcelItemReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-batch-file-layout Show documentation
Show all versions of spring-batch-file-layout Show documentation
Layout driven spring batch item readers and writers
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