Interface PlacePredicate
-
- All Superinterfaces:
java.util.function.Predicate<Place>
- All Known Implementing Classes:
AndPredicate,MostKArcsPredicate,NonEmptyIOTransitionSetPlacePredicate,NonSelfLoopPlacePredicate,OrPredicate
public interface PlacePredicate extends java.util.function.Predicate<Place>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default booleantest(Place place)booleantestPlace(Place place)Returns whether a certain predicate is satisfied for a given place
-
-
-
Method Detail
-
testPlace
boolean testPlace(Place place)
Returns whether a certain predicate is satisfied for a given place- Parameters:
place- that we want to check for filtering- Returns:
- true when the predicate is satisfied and false otherwise
-
-