void parseDataType(Configuration configuration, Sheet sheet, int startRow, Attribute attr) {
   String value = ParserUtils.getCellValue(sheet, startRow, configuration.getDataTypeCol());
   if (StringUtils.isNotEmpty(value)) {
     attr.setDataType(value);
   }
 }