private CellType ultimateCellType()

in thumbnails4j-xlsx/src/main/java/co/elastic/thumbnails4j/xlsx/XlsxToHtmlSerializer.java [265:271]


    private CellType ultimateCellType(Cell cell){
        CellType type = cell.getCellType();
        if (type == CellType.FORMULA){
            type = cell.getCachedFormulaResultType();
        }
        return type;
    }