spring-batch-extensions
spring-batch-extensions copied to clipboard
DefaultRowset method getColumnValue is Missing
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).