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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(PLTableCell aCell, int nCellIndex, int nEffectiveCellStartIndex, int nEffectiveCellEndIndex)Performs this operation on the given arguments.
-
-
-
Method Detail
-
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. Nevernull.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.
-
-