}
public static StockPriceWritable fromLine(String line)
throws IOException {
CSVParser parser = new CSVParser();
String[] parts = parser.parseLine(line);
StockPriceWritable stock = new StockPriceWritable(
//<co id="ch03_comment_seqfile_write3"/>
parts[0], parts[1], Double.valueOf(parts[2]),
Double.valueOf(parts[3]),