void parseNotNull(Configuration configuration, Sheet sheet, int startRow, Attribute attr) {
   String value = ParserUtils.getCellValue(sheet, startRow, configuration.getNotNullCol());
   if (StringUtils.isNotEmpty(value)) {
     attr.setNotNull(true);
   }
 }