spring-batch-extensions icon indicating copy to clipboard operation
spring-batch-extensions copied to clipboard

DefaultRowset method getColumnValue is Missing

Open zikozee opened this issue 4 years ago • 1 comments

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

zikozee avatar Oct 18 '21 01:10 zikozee

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).

mdeinum avatar Oct 26 '21 08:10 mdeinum