Map<String, Column> field2column) throws ParseException
{
String value = getTextValue(name, rawValues, field2column);
if (value == null)
return null;
FieldFormat ff = field2column.get(name).getFormat();
if (ff != null && ff.getFormat() != null)
return (E) ff.getFormat().parseObject(value);
else
return Enum.valueOf(type, value);
}