Interface IPLTableCellConsumer

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 IPLTableCellConsumer
Special consumer for table cells.
Author:
Philip Helger
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(PLTableCell aCell, int nCellIndex, int nEffectiveCellStartIndex, int nEffectiveCellEndIndex)
    Performs this operation on the given arguments.
  • Method Details

    • accept

      void accept(@Nonnull PLTableCell aCell, @Nonnegative int nCellIndex, @Nonnegative int nEffectiveCellStartIndex, @Nonnegative int nEffectiveCellEndIndex)
      Performs this operation on the given arguments.
      Parameters:
      aCell - the current table cell. Never null.
      nCellIndex - The cell index. Always ≥ 0.
      nEffectiveCellStartIndex - The effective cell start index including colspan. Always ≥ 0.
      nEffectiveCellEndIndex - The effective cell end index including colspan. Always ≥ 0.