com.jrefinery.workbook
Class ValueCell

java.lang.Object
  |
  +--com.jrefinery.workbook.Cell
        |
        +--com.jrefinery.workbook.ValueCell
All Implemented Interfaces:
java.lang.Comparable

public class ValueCell
extends Cell

A cell that contains a value.


Fields inherited from class com.jrefinery.workbook.Cell
column, content, DATE, EXPRESSION, LABEL, row, VALUE, valueFormat, valueType
 
Constructor Summary
ValueCell(double value, int column, int row)
          Standard constructor.
 
Methods inherited from class com.jrefinery.workbook.Cell
compareTo, getSerialNumber, writeCell, writeContent
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ValueCell

public ValueCell(double value,
                 int column,
                 int row)
Standard constructor.
Parameters:
value - The value contained in the cell.
column - The column (0 <= column < Worksheet.MAX_COLUMNS).
row - The row (0 <= row < Worksheet.MAX_ROWS).