Poi
Composite Recipes
Recipes that include further recipes, often including the individual recipes below.
- Migrates to Apache POI 3.17
- Replace
Cell.setCellType(int)
withCell.setCellType(CellType)
- Replace
Font.setBoldweight(short)
withFont.setBold(boolean)
Recipes
- Replace
Cell.setCellType(Cell.CELL_TYPE_BLANK)
withCell.setCellType(CellType.BLANK)
- Replace
Cell.setCellType(Cell.CELL_TYPE_BOOLEAN)
withCell.setCellType(CellType.BOOLEAN)
- Replace
Cell.setCellType(Cell.CELL_TYPE_ERROR)
withCell.setCellType(CellType.ERROR)
- Replace
Cell.setCellType(Cell.CELL_TYPE_FORMULA)
withCell.setCellType(CellType.FORMULA)
- Replace
Cell.setCellType(Cell.CELL_TYPE_NUMERIC)
withCell.setCellType(CellType.NUMERIC)
- Replace
Cell.setCellType(Cell.CELL_TYPE_STRING)
withCell.setCellType(CellType.STRING)
- Replace
Font.setBoldweight(Font.BOLDWEIGHT_BOLD)
withFont.setBold(true)
- Replace
Font.setBoldweight(Font.BOLDWEIGHT_NORMAL)
withFont.setBold(false)