/**
* 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();
註解說未來會提供,沒提供代替方法標過時,這種做法是有點奇葩
名字改成了:
getCellType
官方文件:https://poi.apache.org/apidoc...
文件說:返回 int 的在 4.0 版本後將要替換成返回 CellType,但是名字還是 getCellType