Interface TableDecoratorDataSet.TableDecoratorFunction

Enclosing class:
TableDecoratorDataSet
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 static interface TableDecoratorDataSet.TableDecoratorFunction
A function that decorates a single ITable.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(ITable table)
    Applies this function to the given table.
  • Method Details

    • apply

      ITable apply(ITable table) throws DataSetException
      Applies this function to the given table.
      Parameters:
      table - the table to decorate.
      Returns:
      the decorated table.
      Throws:
      DataSetException - if the table cannot be decorated.