public class CellEvent
extends java.lang.Object
CellEvent represents data associated with a "cell processed"
event. It contains a reference to the Cell that was processed,
the Map of bean names and values used to process it, the old
value, and the new value.| Constructor | Description |
|---|---|
CellEvent(org.apache.poi.ss.usermodel.Cell cell,
java.util.Map<java.lang.String,java.lang.Object> beans,
java.lang.Object oldValue,
java.lang.Object newValue) |
Creates a
CellEvent. |
| Modifier and Type | Method | Description |
|---|---|---|
java.util.Map<java.lang.String,java.lang.Object> |
getBeans() |
Returns the
Map of bean names and values that was used to
process the Cell. |
org.apache.poi.ss.usermodel.Cell |
getCell() |
Returns the
Cell that was processed. |
java.lang.Object |
getNewValue() |
Returns the new cell value.
|
java.lang.Object |
getOldValue() |
Returns the old cell value.
|
public CellEvent(org.apache.poi.ss.usermodel.Cell cell,
java.util.Map<java.lang.String,java.lang.Object> beans,
java.lang.Object oldValue,
java.lang.Object newValue)
CellEvent.cell - The Cell that was processed.beans - The Map of bean names and values that was used
to process cell.oldValue - The old cell value.newValue - The new cell value.public org.apache.poi.ss.usermodel.Cell getCell()
Cell that was processed.Cell that was processed.public java.util.Map<java.lang.String,java.lang.Object> getBeans()
Map of bean names and values that was used to
process the Cell.Map of bean names and values.public java.lang.Object getOldValue()
public java.lang.Object getNewValue()
Copyright © 2012–2018 Jett Team. All rights reserved.