spring-projects / spring-batch-extensions

Spring Batch Extensions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DefaultRowset method getColumnValue is Missing

zikozee opened this issue · comments

The method is missing or removed from spring-batch-excel. Kindly assist to explain why this was removed and the allternative

The RowSet interface is about rows and not columns. One should use the getCurrentRow to retrieve the full row and use an index to retrieve the value for the desired column. This has been done to be able to reuse the same support classes for the classic and streaming version (which doesn't allow direct column access like the classic one does).