Currently all fields are treated as text with toString() method.
There should be possibility to assign custom column formatters.
E.g:
interface ICellFormatter<T> {
String format(T what);
}
class DefaultFormatter implements ICellFormatter<Object> {
@Override
String format(Object what) {
return what.toString();
}
}
Currently all fields are treated as text with
toString()method.There should be possibility to assign custom column formatters.
E.g: