I\'m reading an excel-file (file extension xlsx) using org.apache.poi 3.15.
This is my code:
try (FileInputStream fileInputStream = new FileInputStr
The accepted answer shows the reason for the deprecation but misses to name the alternative:
CellType getCellTypeEnum()
where the CellType is the enum decribing the type of the cell.
CellType
The plan is to rename getCellTypeEnum() back to getCellType() in POI 4.0.
getCellTypeEnum()
getCellType()