if ("General".equalsIgnoreCase(formatStr) || "@".equals(formatStr)) {
return new FormatTextImpl(cell.getRichStringCellValue());
}
}
final CellFormat format = CellFormat.getInstance(formatStr == null ? "" : formatStr, ZssContext.getCurrent().getLocale()); //ZSS-68
return new FormatTextImpl(format.apply(cell));
}