Methods Summary |
---|
public java.lang.Object | clone()
BlankRecord rec = new BlankRecord();
rec.field_1_row = field_1_row;
rec.field_2_col = field_2_col;
rec.field_3_xf = field_3_xf;
return rec;
|
public int | compareTo(java.lang.Object obj)
CellValueRecordInterface loc = ( CellValueRecordInterface ) obj;
if ((this.getRow() == loc.getRow())
&& (this.getColumn() == loc.getColumn()))
{
return 0;
}
if (this.getRow() < loc.getRow())
{
return -1;
}
if (this.getRow() > loc.getRow())
{
return 1;
}
if (this.getColumn() < loc.getColumn())
{
return -1;
}
if (this.getColumn() > loc.getColumn())
{
return 1;
}
return -1;
|
public boolean | equals(java.lang.Object obj)
if (!(obj instanceof CellValueRecordInterface))
{
return false;
}
CellValueRecordInterface loc = ( CellValueRecordInterface ) obj;
if ((this.getRow() == loc.getRow())
&& (this.getColumn() == loc.getColumn()))
{
return true;
}
return false;
|
protected void | fillFields(org.apache.poi.hssf.record.RecordInputStream in)
//field_1_row = LittleEndian.getShort(data, 0 + offset);
field_1_row = in.readUShort();
field_2_col = in.readShort();
field_3_xf = in.readShort();
|
public short | getColumn()get the column this cell defines within the row
return field_2_col;
|
public int | getRecordSize()
return 10;
|
public int | getRow()get the row this cell occurs on
return field_1_row;
|
public short | getSid()return the non static version of the id for this record.
return sid;
|
public short | getXFIndex()get the index of the extended format record to style this cell with
return field_3_xf;
|
public boolean | isAfter(org.apache.poi.hssf.record.CellValueRecordInterface i)
if (this.getRow() < i.getRow())
{
return false;
}
if ((this.getRow() == i.getRow())
&& (this.getColumn() < i.getColumn()))
{
return false;
}
if ((this.getRow() == i.getRow())
&& (this.getColumn() == i.getColumn()))
{
return false;
}
return true;
|
public boolean | isBefore(org.apache.poi.hssf.record.CellValueRecordInterface i)
if (this.getRow() > i.getRow())
{
return false;
}
if ((this.getRow() == i.getRow())
&& (this.getColumn() > i.getColumn()))
{
return false;
}
if ((this.getRow() == i.getRow())
&& (this.getColumn() == i.getColumn()))
{
return false;
}
return true;
|
public boolean | isEqual(org.apache.poi.hssf.record.CellValueRecordInterface i)
return ((this.getRow() == i.getRow())
&& (this.getColumn() == i.getColumn()));
|
public boolean | isInValueSection()
return true;
|
public boolean | isValue()
return true;
|
public int | serialize(int offset, byte[] data)called by the class that is responsible for writing this sucker.
Subclasses should implement this so that their data is passed back in a
byte array.
LittleEndian.putShort(data, 0 + offset, sid);
LittleEndian.putShort(data, 2 + offset, ( short ) 6);
//LittleEndian.putShort(data, 4 + offset, getRow());
LittleEndian.putShort(data, 4 + offset, ( short ) getRow());
LittleEndian.putShort(data, 6 + offset, getColumn());
LittleEndian.putShort(data, 8 + offset, getXFIndex());
return getRecordSize();
|
public void | setColumn(short col)set the column this cell defines within the row
field_2_col = col;
|
public void | setRow(int row)set the row this cell occurs on
field_1_row = row;
|
public void | setXFIndex(short xf)set the index of the extended format record to style this cell with
field_3_xf = xf;
|
public java.lang.String | toString()
StringBuffer buffer = new StringBuffer();
buffer.append("[BLANK]\n");
buffer.append("row = ").append(Integer.toHexString(getRow()))
.append("\n");
buffer.append("col = ").append(Integer.toHexString(getColumn()))
.append("\n");
buffer.append("xf = ")
.append(Integer.toHexString(getXFIndex())).append("\n");
buffer.append("[/BLANK]\n");
return buffer.toString();
|
protected void | validateSid(short id)called by constructor, should throw runtime exception in the event of a
record passed with a differing ID.
if (id != sid)
{
throw new RecordFormatException("NOT A BLANKRECORD!");
}
|