jxl.read.biff
public class: BiffRecordReader [javadoc |
source]
java.lang.Object
jxl.read.biff.BiffRecordReader
Serves up Record objects from a biff file. This object is used by the
demo programs BiffDump and ... only and has no influence whatsoever on
the JExcelApi reading and writing of excel sheets
| Method from jxl.read.biff.BiffRecordReader Detail: |
public int getPos() {
return file.getPos() - record.getLength() - 4;
}
Gets the position of the current record in the biff file |
public boolean hasNext() {
return file.hasNext();
}
Sees if there are any more records to read |
public Record next() {
record = file.next();
return record;
}
|