Parse data from a character array
Parsed values are stored at an internal array in this CSVParser.
@param sFileDescriptor A list of column names separated by ',' ';' '|' '`' or '\t'.Column names may be quoted. Lines are delimiter by '\n' characters
Example 1) tx_mail,tx_name,tx_surname
Example 2) "tx_name","tx_surname","tx_salutation"
@throws ArrayIndexOutOfBoundsException Delimited values for a file is greaterthan columns specified at descriptor.
@throws RuntimeException If delimiter is not one of { ',' ';' '|' '`' or '\t' }
@throws NullPointerException if sFileDescriptor is
null
@throws IllegalArgumentException if sFileDescriptor is ""