I was using version 3.0.2 and am considering switching to version 3.1. I am wondering why the HSSFErrorConstants have changed from byte to int values.
I am using them to set the HSSFCell.setCellErrorValue. To use them now I have to cast the constant to a byte like: cell.setCellErrorValue((byte)HSSFErrorConstants.ERROR_DIV_0). Why did they change? Is this the proper way to use them?
