net.sourceforge.fixagora.basis.shared.model.persistence
Class SpreadSheetCellContent

java.lang.Object
  extended by net.sourceforge.fixagora.basis.shared.model.persistence.SpreadSheetCellContent
All Implemented Interfaces:
java.io.Serializable

@Entity
public class SpreadSheetCellContent
extends java.lang.Object
implements java.io.Serializable

The Class SpreadSheetCellContent.

See Also:
Serialized Form

Nested Class Summary
static class SpreadSheetCellContent.SpreadSheetCellType
          The Enum SpreadSheetCellType.
 
Constructor Summary
SpreadSheetCellContent()
           
 
Method Summary
 SpreadSheetCellContent clone()
           
 boolean equals(java.lang.Object obj)
           
 java.lang.Boolean getBooleanValue()
          Gets the boolean value.
 java.lang.Object getCalculatedValue()
          Gets the calculated value.
 java.lang.Integer getCellColumn()
          Gets the cell column.
 java.lang.Integer getCellRow()
          Gets the cell row.
 java.lang.String getFormulaValue()
          Gets the formula value.
 long getId()
          Gets the id.
 java.lang.Double getNumericValue()
          Gets the numeric value.
 long getSpreadSheet()
          Gets the spread sheet.
 SpreadSheetCellContent.SpreadSheetCellType getSpreadSheetCellType()
          Gets the spread sheet cell type.
 java.lang.String getStringValue()
          Gets the string value.
 int hashCode()
           
 void setBooleanValue(java.lang.Boolean booleanValue)
          Sets the boolean value.
 void setCalculatedValue(java.lang.Object calculatedValue)
          Sets the calculated value.
 void setCellColumn(java.lang.Integer cellColumn)
          Sets the cell column.
 void setCellRow(java.lang.Integer cellRow)
          Sets the cell row.
 void setFormulaValue(java.lang.String formulaValue)
          Sets the formula value.
 void setId(long id)
          Sets the id.
 void setNumericValue(java.lang.Double numericValue)
          Sets the numeric value.
 void setSpreadSheet(long spreadSheet)
          Sets the spread sheet.
 void setSpreadSheetCellType(SpreadSheetCellContent.SpreadSheetCellType spreadSheetCellType)
          Sets the spread sheet cell type.
 void setStringValue(java.lang.String stringValue)
          Sets the string value.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SpreadSheetCellContent

public SpreadSheetCellContent()
Method Detail

getCalculatedValue

public java.lang.Object getCalculatedValue()
Gets the calculated value.

Returns:
the calculated value

setCalculatedValue

public void setCalculatedValue(java.lang.Object calculatedValue)
Sets the calculated value.

Parameters:
calculatedValue - the new calculated value

getSpreadSheet

public long getSpreadSheet()
Gets the spread sheet.

Returns:
the spread sheet

setSpreadSheet

public void setSpreadSheet(long spreadSheet)
Sets the spread sheet.

Parameters:
spreadSheet - the new spread sheet

getCellRow

public java.lang.Integer getCellRow()
Gets the cell row.

Returns:
the cell row

setCellRow

public void setCellRow(java.lang.Integer cellRow)
Sets the cell row.

Parameters:
cellRow - the new cell row

getCellColumn

public java.lang.Integer getCellColumn()
Gets the cell column.

Returns:
the cell column

setCellColumn

public void setCellColumn(java.lang.Integer cellColumn)
Sets the cell column.

Parameters:
cellColumn - the new cell column

getSpreadSheetCellType

public SpreadSheetCellContent.SpreadSheetCellType getSpreadSheetCellType()
Gets the spread sheet cell type.

Returns:
the spread sheet cell type

setSpreadSheetCellType

public void setSpreadSheetCellType(SpreadSheetCellContent.SpreadSheetCellType spreadSheetCellType)
Sets the spread sheet cell type.

Parameters:
spreadSheetCellType - the new spread sheet cell type

getFormulaValue

public java.lang.String getFormulaValue()
Gets the formula value.

Returns:
the formula value

setFormulaValue

public void setFormulaValue(java.lang.String formulaValue)
Sets the formula value.

Parameters:
formulaValue - the new formula value

getStringValue

public java.lang.String getStringValue()
Gets the string value.

Returns:
the string value

setStringValue

public void setStringValue(java.lang.String stringValue)
Sets the string value.

Parameters:
stringValue - the new string value

getBooleanValue

public java.lang.Boolean getBooleanValue()
Gets the boolean value.

Returns:
the boolean value

setBooleanValue

public void setBooleanValue(java.lang.Boolean booleanValue)
Sets the boolean value.

Parameters:
booleanValue - the new boolean value

getNumericValue

public java.lang.Double getNumericValue()
Gets the numeric value.

Returns:
the numeric value

setNumericValue

public void setNumericValue(java.lang.Double numericValue)
Sets the numeric value.

Parameters:
numericValue - the new numeric value

getId

public long getId()
Gets the id.

Returns:
the id

setId

public void setId(long id)
Sets the id.

Parameters:
id - the new id

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object

clone

public SpreadSheetCellContent clone()
Overrides:
clone in class java.lang.Object