org.apache.poi.hssf.record
Class SharedValueRecordBase

java.lang.Object
  extended by org.apache.poi.hssf.record.RecordBase
      extended by org.apache.poi.hssf.record.Record
          extended by org.apache.poi.hssf.record.StandardRecord
              extended by org.apache.poi.hssf.record.SharedValueRecordBase
Direct Known Subclasses:
ArrayRecord, SharedFormulaRecord, TableRecord

public abstract class SharedValueRecordBase
extends StandardRecord

Common base class for SharedFormulaRecord, ArrayRecord and TableRecord which are have similarities.

Author:
Josh Micich

Constructor Summary
SharedValueRecordBase(LittleEndianInput in)
          reads only the range (1 CellRangeAddress8Bit) from the stream
 
Method Summary
 int getFirstColumn()
           
 int getFirstRow()
           
 int getLastColumn()
           
 int getLastRow()
           
 CellRangeAddress8Bit getRange()
           
 boolean isFirstCell(int rowIx, int colIx)
           
 boolean isInRange(int rowIx, int colIx)
           
 void serialize(LittleEndianOutput out)
          Write the data content of this BIFF record.
 
Methods inherited from class org.apache.poi.hssf.record.StandardRecord
getRecordSize, serialize
 
Methods inherited from class org.apache.poi.hssf.record.Record
clone, cloneViaReserialise, getSid, serialize, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SharedValueRecordBase

public SharedValueRecordBase(LittleEndianInput in)
reads only the range (1 CellRangeAddress8Bit) from the stream

Method Detail

getRange

public final CellRangeAddress8Bit getRange()
Returns:
the range of cells that this record is shared across. Never null.

getFirstRow

public final int getFirstRow()

getLastRow

public final int getLastRow()

getFirstColumn

public final int getFirstColumn()

getLastColumn

public final int getLastColumn()

serialize

public void serialize(LittleEndianOutput out)
Description copied from class: StandardRecord
Write the data content of this BIFF record. The 'ushort sid' and 'ushort size' header fields have already been written by the superclass.
The subclass must write the exact number of bytes as reported by RecordBase.getRecordSize()}


isInRange

public final boolean isInRange(int rowIx,
                               int colIx)
Returns:
true if (rowIx, colIx) is within the range (getRange()) of this shared value object.

isFirstCell

public final boolean isFirstCell(int rowIx,
                                 int colIx)
Returns:
true if (rowIx, colIx) describes the first cell in this shared value object's range (getRange())