jxl.read.biff
class: ErrorRecord [javadoc |
source]
java.lang.Object
jxl.biff.RecordData
jxl.read.biff.CellValue
jxl.read.biff.ErrorRecord
All Implemented Interfaces:
ErrorCell, CellFeaturesAccessor, Cell
A cell containing an error code. This will usually be the result
of some error during the calculation of a formula
| Method from jxl.read.biff.ErrorRecord Detail: |
public String getContents() {
return "ERROR " + errorCode;
}
Returns the numerical value as a string |
public int getErrorCode() {
return errorCode;
}
Interface method which gets the error code for this cell. If this cell
does not represent an error, then it returns 0. Always use the
method isError() to determine this prior to calling this method |
public CellType getType() {
return CellType.ERROR;
}
|