Interface QueryItemPreprocessor<I extends QueryItem>

Type Parameters:
I - Item class which is being pre processed.
All Known Implementing Classes:
DaysToWorkingDaysReportPreProcessor
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 QueryItemPreprocessor<I extends QueryItem>
The QueryItemPreprocessor is used when adding QueryItems into a Report. It defines a processing step which is executed on each QueryItem before inserting it into the Report.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(I item)
     
  • Method Details

    • apply

      I apply(I item)