readRowAsObjectList

fun readRowAsObjectList(row: Row, numColumns: Int = numberColumns(row)): List<Any?>

Read a row assuming a fixed number of columns. Cells that are missing/null in the row are read as null objects.

Return

a list of objects representing the contents of the cells for each column

Parameters

row

the Excel row

numColumns

the number of columns to read in the row