Class SheetUpdate
java.lang.Object
org.primefaces.extensions.model.sheet.SheetUpdate
- All Implemented Interfaces:
Serializable
Represents the data associated with the update of a single cell.
- Since:
- 6.2
- Author:
- Mark Lassiter / Melloware
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSheetUpdate
(Object rowKey, int colIndex, Object rowData, Object oldValue, Object newValue) Constructs an instance representing a single cell update. -
Method Summary
-
Constructor Details
-
SheetUpdate
Constructs an instance representing a single cell update.- Parameters:
rowKey
- the row key of the row being updatedcolIndex
- the column index of the column being updatedrowData
- the rowData associated with the row being updatedoldValue
- the old cell valuenewValue
- the new cell value
-
-
Method Details
-
hashCode
public int hashCode() -
equals
-
toString
-
getRowData
The rowData value.- Returns:
- the rowData the row data for this update
-
getOldValue
The oldValue value.- Returns:
- the oldValue
-
getNewValue
The newValue value.- Returns:
- the newValue
-
getRowKey
The rowKey value.- Returns:
- the rowKey
-
getColIndex
public int getColIndex()The colIndex value.- Returns:
- the colIndex
-