getCellTypeEnum过时,及getCellTypeEnum的作用

getCellType和getCellTypeEnum过时,他们有替代的方法吗,以及他们具体的作用是什么

if(row.getCell(m).getCellType()==Cell.CELL_TYPE_BLANK){
                    continue;
}
 if(row.getCell(m).getCellTypeEnum()== CellType.BLANK){
                    continue;
}

换jdk