Interface LPMFilter
-
- All Known Implementing Classes:
AbovePassageCoverageThresholdLPMFilter,AbovePassageRepetitionThresholdLPMFilter,AboveTransitionOverlappingThresholdLPMFilter,AboveWindowsEvaluationThresholdLPMFilter,AbstractLPMFilter,NeedsEvaluationLPMFilter
public interface LPMFilterInterface that needs to be implemented by all LPMs filters
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<LocalProcessModel>filter(java.util.Set<LocalProcessModel> lpms)intgetPriority()booleanneedsEvaluation()booleanshouldKeep(LocalProcessModel lpm)
-
-
-
Method Detail
-
filter
java.util.Set<LocalProcessModel> filter(java.util.Set<LocalProcessModel> lpms)
-
shouldKeep
boolean shouldKeep(LocalProcessModel lpm)
-
getPriority
int getPriority()
-
needsEvaluation
boolean needsEvaluation()
-
-