The class supports reading a CSV file. The reader supports handling CSV
entries where the separator is contained in quotes and also CSV entries where
a quoted entry contains newline characters.
Returns a list of lines representing the entire CSV file. Each line is a
array of strings.
Using this method on large feeds is inherently unsafe and may lead to an
out-of-memory condition. Instead use method readNext() and
process entries line by line.