Package adams.data.spreadsheet
Class SparseFloatDataRow
- java.lang.Object
-
- adams.data.spreadsheet.AbstractRow
-
- adams.data.spreadsheet.SparseDataRow
-
- adams.data.spreadsheet.SparseFloatDataRow
-
- All Implemented Interfaces:
Mergeable<Row>
,DataRow
,Row
,SpreadSheetColumnInsertionListener
,Serializable
public class SparseFloatDataRow extends SparseDataRow
Represents a data row with sparse data, using floats internally for representing the cells.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class adams.data.spreadsheet.AbstractRow
m_Cells, m_Owner
-
-
Constructor Summary
Constructors Constructor Description SparseFloatDataRow()
Default constructor for GOE only.SparseFloatDataRow(SpreadSheet owner)
Constructor that ties row to spreadsheet.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Cell
newCell(Row owner)
Creates a new instance of a cell.-
Methods inherited from class adams.data.spreadsheet.SparseDataRow
addCell, addCell, cellKeys, cells, getCell, getCellKey, getClone, getContent, getOwner, hasCell, indexOf, mergeWith, spreadSheetColumnInserted, toString
-
Methods inherited from class adams.data.spreadsheet.AbstractRow
assign, clear, getCell, getCellCount, hasCell, removeCell, removeCell, removeMissing, setOwner
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface adams.data.spreadsheet.Row
assign, clear, getCell, getCellCount, hasCell, removeCell, removeCell, removeMissing, setOwner
-
-
-
-
Constructor Detail
-
SparseFloatDataRow
public SparseFloatDataRow()
Default constructor for GOE only.
-
SparseFloatDataRow
public SparseFloatDataRow(SpreadSheet owner)
Constructor that ties row to spreadsheet.- Parameters:
owner
- the spreadsheet this row belongs to
-
-