Package org.ossreviewtoolkit.model
Object DependencyNavigator.Companion
-
- All Implemented Interfaces:
public class DependencyNavigator.Companion
-
-
Field Summary
Fields Modifier and Type Field Description private final Function1<DependencyNode, Boolean>MATCH_ALLpublic final static DependencyNavigator.CompanionINSTANCE
-
Method Summary
Modifier and Type Method Description final Map<Identifier, Set<Issue>>collectIssues(Sequence<DependencyNode> dependencies)Return a map with all Issues found in the dependency graph spawned by dependencies grouped by their Identifiers. final Function1<DependencyNode, Boolean>getMATCH_ALL()A pre-defined DependencyMatcher that matches all dependencies. -
-
Method Detail
-
collectIssues
final Map<Identifier, Set<Issue>> collectIssues(Sequence<DependencyNode> dependencies)
Return a map with all Issues found in the dependency graph spawned by dependencies grouped by their Identifiers.
-
getMATCH_ALL
final Function1<DependencyNode, Boolean> getMATCH_ALL()
A pre-defined DependencyMatcher that matches all dependencies. It can be used to traverse the whole dependency graph.
-
-
-
-