|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.poi.hssf.record.RecordBase
org.apache.poi.hssf.record.Record
org.apache.poi.hssf.record.RowRecord
public final class RowRecord
Title: Row Record (0x0208)
Description: stores the row information for the sheet. REFERENCE: PG 379 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)
Field Summary | |
---|---|
static int |
ENCODED_SIZE
|
static int |
MAX_ROW_NUMBER
The maximum row number that excel can handle (zero based) ie 65536 rows is max number of rows. |
static short |
sid
|
Constructor Summary | |
---|---|
RowRecord(int rowNumber)
|
|
RowRecord(RecordInputStream in)
|
Method Summary | |
---|---|
java.lang.Object |
clone()
|
boolean |
getBadFontHeight()
get whether the font and row height are not compatible |
boolean |
getColapsed()
get whether or not to colapse this row |
short |
getFirstCol()
get the logical col number for the first cell this row (0 based index) |
boolean |
getFormatted()
get whether the row has been formatted (even if its got all blank cells) |
short |
getHeight()
get the height of the row |
short |
getLastCol()
get the logical col number for the last cell this row plus one (0 based index) |
short |
getOptimize()
get whether to optimize or not (set to 0) |
short |
getOptionFlags()
gets the option bitmask. |
short |
getOutlineLevel()
get the outline level of this row |
int |
getRecordSize()
gives the current serialized size of the record. |
int |
getRowNumber()
get the logical row number for this row (0 based index) |
short |
getSid()
return the non static version of the id for this record. |
short |
getXFIndex()
if the row is formatted then this is the index to the extended format record |
boolean |
getZeroHeight()
get whether or not to display this row with 0 height |
int |
serialize(int offset,
byte[] data)
called by the class that is responsible for writing this sucker. |
void |
setBadFontHeight(boolean f)
set whether the font and row height are not compatible |
void |
setColapsed(boolean c)
set whether or not to collapse this row |
void |
setFirstCol(short col)
set the logical col number for the first cell this row (0 based index) |
void |
setFormatted(boolean f)
set whether the row has been formatted (even if its got all blank cells) |
void |
setHeight(short height)
set the height of the row |
void |
setLastCol(short col)
set the logical col number for the last cell this row (0 based index) |
void |
setOptimize(short optimize)
set whether to optimize or not (set to 0) |
void |
setOutlineLevel(short ol)
set the outline level of this row |
void |
setRowNumber(int row)
set the logical row number for this row (0 based index) |
void |
setXFIndex(short index)
if the row is formatted then this is the index to the extended format record |
void |
setZeroHeight(boolean z)
set whether or not to display this row with 0 height |
java.lang.String |
toString()
get a string representation of the record (for biffview/debugging) |
Methods inherited from class org.apache.poi.hssf.record.Record |
---|
cloneViaReserialise, serialize |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final short sid
public static final int ENCODED_SIZE
public static final int MAX_ROW_NUMBER
Constructor Detail |
---|
public RowRecord(int rowNumber)
public RowRecord(RecordInputStream in)
Method Detail |
---|
public void setRowNumber(int row)
row
- - the row numberpublic void setFirstCol(short col)
col
- - the col numberpublic void setLastCol(short col)
col
- - the col numberpublic void setHeight(short height)
height
- of the rowpublic void setOptimize(short optimize)
optimize
- (set to 0)public void setOutlineLevel(short ol)
ol
- - the outline levelpublic void setColapsed(boolean c)
c
- - collapse or notpublic void setZeroHeight(boolean z)
z
- height is zero or not.public void setBadFontHeight(boolean f)
f
- true if they aren't compatible (damn not logic)public void setFormatted(boolean f)
f
- formatted or notpublic void setXFIndex(short index)
index
- to the XF recordExtendedFormatRecord
public int getRowNumber()
public short getFirstCol()
public short getLastCol()
public short getHeight()
public short getOptimize()
public short getOptionFlags()
public short getOutlineLevel()
getOptionFlags()
public boolean getColapsed()
getOptionFlags()
public boolean getZeroHeight()
getOptionFlags()
public boolean getBadFontHeight()
getOptionFlags()
public boolean getFormatted()
getOptionFlags()
public short getXFIndex()
ExtendedFormatRecord
public java.lang.String toString()
Record
toString
in class Record
public int serialize(int offset, byte[] data)
RecordBase
serialize
in class RecordBase
offset
- to begin writing atdata
- byte array containing instance data
public int getRecordSize()
Record
getRecordSize
in class Record
public short getSid()
Record
getSid
in class Record
public java.lang.Object clone()
clone
in class Record
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |