There are no modules declared in this project.
saro commons

QUICK START
maven
<dependency>
<groupId>me.saro</groupId>
<artifactId>commons-excel</artifactId>
<version>4.0.0.0</version>
</dependency>
gradle
compile 'me.saro:commons-excel:4.0.0.0'
repository
see
Structure
Excel
me.saro.commons.excel.Excel
Excel.create() : Excel
Excel.createBulkExcel() : Excel
Excel.open(File) : Excel
autoSizeColumn() : Excel
autoSizeColumn(int) : Excel
getCell(String) : ExcelCell
getCell(int, int) : ExcelCell
getPoiSheet() : Sheet
getRow() : ExcelRow
getRow(int) : ExcelRow
isBulk() : boolean
moveNextRow() : Excel
moveSheet(int) : Excel
output(OutputStream) : Excel
readPivotTable(String, int, ThrowableFunction<List<ExcelCell>, R>) : List<R>
readPivotTable(String, int, int, ThrowableFunction<List<ExcelCell>, R>) : List<R>
readTable(String, int, ThrowableFunction<List<ExcelCell>, R>) : List<R>
readTable(String, int, int, ThrowableFunction<List<ExcelCell>, R>) : List<R>
save(File, boolean) : Excel
writeHorizontalList(String, Collection<Object>) : Excel
writePivotTable(String, Collection<String>, List<T>) : Excel
writeTable(String, Collection<String>, List<T>) : Excel
writeVerticalList(String, Collection<Object>) : Excel
ExcelRow
me.saro.commons.excel.ExcelRow
ExcelRow.toColumnNameByRowIndex(int) : String
ExcelRow.toRowIndex(String) : int
getCell() : ExcelCell
getCell(int) : ExcelCell
getNextRow() : ExcelRow
getPoiRow(boolean) : Row
isEmpty() : boolean
moveNextCell() : ExcelRow
ExcelCell
me.saro.commons.excel.ExcelCell
ExcelCell.toCellIndex(String) : int
ExcelCell.toColumnName(int, int) : String
ExcelCell.toColumnNameByCellIndex(int) : String
ExcelCell.toDate(Cell, Date) : Date
ExcelCell.toDouble(Cell) : double
ExcelCell.toDouble(Cell, double) : double
ExcelCell.toRowCellIndex(String) : int[]
ExcelCell.toString(Cell, String) : String
getDateValue(Date) : Date
getDoubleValue() : double
getDoubleValue(double) : double
getFloatValue() : float
getFloatValue(float) : float
getIntValue() : int
getIntValue(int) : int
getIntegerStringValue(long) : String
getLongValue() : long
getLongValue(long) : long
getNextCell() : ExcelCell
getNextRowCell() : ExcelCell
getPoiCell(boolean) : Cell
getStringValue() : String
getStringValue(String) : String
isEmpty() : boolean
set(Object) : ExcelCell