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.
Special consumer for table cells.
- Author:
- Philip Helger
-
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(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. 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.
-