BestSolution.at public p2 repository
CellDataFunction
at.bestsolution.framework.grid.func

Interface CellDataFunction<R,C,D>

  • Type Parameters:
    R - the row type
    C - the cell value type
    D - the return type
    All Known Subinterfaces:
    DisposableCellDataFunction<R,C,D>
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.


    @FunctionalInterface
    public interface CellDataFunction<R,C,D>
    Converts the cell value into a UI representation
    Since:
    1.0
    • Method Detail

      • apply

        D apply(R row,
                C cellValue)
        Apply the function on the value
        Parameters:
        row - the row
        cellValue - the cell
        Returns:
        the value to present in the UI