Package de.obqo.decycle.model
Interface EdgeFilter
-
- All Known Implementing Classes:
IgnoredDependenciesFilter,PatternMatchingEdgeFilter
public interface EdgeFilter extends java.util.function.BiPredicate<Node,Node>
-
-
Field Summary
Fields Modifier and Type Field Description static EdgeFilterALLA filter that matches all edges.static EdgeFilterNONEA filter that matches no edges.
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default booleantest(Edge e)
-
-
-
Field Detail
-
ALL
static final EdgeFilter ALL
A filter that matches all edges.
-
NONE
static final EdgeFilter NONE
A filter that matches no edges.
-
-
Method Detail
-
test
default boolean test(Edge e)
-
-