checkFormat("type", getType(), ExcelCellUtils.getCellType(excelCell == null ? HSSFCell.CELL_TYPE_BLANK : excelCell.getCellType()));
if (excelCell == null) {
if (cellNotRequired()) {
return;
} else {
throw new StepExecutionException("Can't find cell for " + getCellReferenceStr(), this);
}
}
final HSSFCellStyle cellStyle = excelCell.getCellStyle();
checkFormat("format", getFormat(), getExcelWorkbook().createDataFormat().getFormat(cellStyle.getDataFormat()));
checkFormat("align", getAlign(), ExcelCellUtils.getAlignmentString(cellStyle.getAlignment()));