[csv] should CSVRecord's values() method be public?

2013-09-15 Thread Michele Rossi
hi, I am trying to use commons-csv for a simple CSV transformation tool and I have encountered a couple of issues that I would like to discuss. The CSVPrinter takes object arrays as input but the values method of CSVRecord is not public. In the code I am writing I check a condition to determine

Re: [csv] should CSVRecord's values() method be public?

2013-09-15 Thread Adrian Crum
I needed access to that method too, so I made that method public in my local copy. Adrian Crum Sandglass Software www.sandglass-software.com On 9/15/2013 12:05 PM, Michele Rossi wrote: hi, I am trying to use commons-csv for a simple CSV transformation tool and I have encountered a couple of

Re: [csv] should CSVRecord's values() method be public?

2013-09-15 Thread Emmanuel Bourg
Le 15/09/2013 21:05, Michele Rossi a écrit : If values() was public I could use the data read from one CSV to directly feed another CSV. Hi Michele, Thank you very much for the feedback. Would a printRecord(CSVRecord) method in CSVPrinter help solving your issue? Emmanuel Bourg