/**
* Return the cell type.
*
* Will return {@link CellType} in version 4.0 of POI.
* For forwards compatibility, do not hard-code cell type literals in your code.
*
* @return the cell type
* @deprecated POI 3.15. Will return a {@link CellType} enum in the future.
*/
int getCellType();
The comment says that it will be provided in the future, and it is marked as obsolete if no alternative method is provided. This approach is a bit strange
The comment says that it will be provided in the future, and it is marked as obsolete if no alternative method is provided. This approach is a bit strange
Name changed to:
getCellType
Official documentation: https://poi.apache.org/apidoc...
The document says: Returning int will be replaced by returning CellType after version 4.0, but the name is still getCellType