Interface AfterGenerationCallback
-
- All Superinterfaces:
Extension
- 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 AfterGenerationCallback extends Extension
Represents a phase callback after the generation phase
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Combination>afterGeneration(List<Combination> inputCombinations)Execute the callback with the suppliedcombinations.
-
-
-
Method Detail
-
afterGeneration
List<Combination> afterGeneration(List<Combination> inputCombinations)
Execute the callback with the suppliedcombinations. The callback should only modify the order of thecombinations, but not thecombinations itself- Parameters:
inputCombinations- the combinations generated by the generation phase- Returns:
- the possibly sorted
combinationsthat were inputted
-
-