Skip to content

Custom column formatting #20

Description

@mjfryc

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();
    }
}

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions