Save This Page
Home » poi-src-3.2-FINAL-20081019 » org.apache » poi » hssf » record » [javadoc | source]
org.apache.poi.hssf.record
public interface: CellValueRecordInterface [javadoc | source]

All Known Implementing Classes:
    LabelRecord, BoolErrRecord, NumberRecord, RKRecord, LabelSSTRecord, FormulaRecord, FormulaRecordAggregate, BlankRecord

The cell value record interface is implemented by all classes of type Record that contain cell values. It allows the containing sheet to move through them and compare them.
Method from org.apache.poi.hssf.record.CellValueRecordInterface Summary:
clone,   getColumn,   getRow,   getXFIndex,   isAfter,   isBefore,   isEqual,   setColumn,   setRow,   setXFIndex
Method from org.apache.poi.hssf.record.CellValueRecordInterface Detail:
 public Object clone()
 public short getColumn()
    get the column this cell defines within the row
 public int getRow()
    get the row this cell occurs on
 public short getXFIndex()
 public boolean isAfter(CellValueRecordInterface i)
    returns whether this cell is after the passed in cell
 public boolean isBefore(CellValueRecordInterface i)
    returns whether this cell is before the passed in cell
 public boolean isEqual(CellValueRecordInterface i)
    returns whether this cell represents the same cell (NOT VALUE)
 public  void setColumn(short col)
    set the column this cell defines within the row
 public  void setRow(int row)
    set the row this cell occurs on
 public  void setXFIndex(short xf)