Hi,
I need an integer cell empty, how can i do that?
DataCell cell = new IntCell(???);
Thanks
Hi,
I need an integer cell empty, how can i do that?
DataCell cell = new IntCell(???);
Thanks
Hi Darbon,
how would you define an empty IntCell?
As an IntCell always has to return a primitive int value one has to initalize the cell with a proper int value.
Cheers,
Christian
My rows in input have an integer column with some missing values.
I must modify the rows and write the results into many output. Can i produce only an integer column with zeros?
Hi Darbon,
I'm not sure if I understand, but can't you just use new IntCell(0)?
Cheers,
Christian
I can't. Maybe you can see the last post of the topic "Row Edit"
The solution is:
cell = DataType.getMissingCell();
Thanks