Package org.eclipse.aether.util.filter
Class ScopeDependencyFilter
java.lang.Object
org.eclipse.aether.util.filter.ScopeDependencyFilter
- All Implemented Interfaces:
DependencyFilter
A dependency filter based on dependency scopes. Note: This filter does not assume any relationships between
the scopes. In particular, the filter is not aware of scopes that logically include other scopes.
- See Also:
-
Constructor Summary
ConstructorDescriptionScopeDependencyFilter
(String... excluded) Creates a new filter using the specified excludes.ScopeDependencyFilter
(Collection<String> included, Collection<String> excluded) Creates a new filter using the specified includes and excludes. -
Method Summary
Modifier and TypeMethodDescriptionboolean
accept
(DependencyNode node, List<DependencyNode> parents) Indicates whether the specified dependency node shall be included or excluded.boolean
int
hashCode()
-
Constructor Details
-
ScopeDependencyFilter
Creates a new filter using the specified includes and excludes.- Parameters:
included
- The set of scopes to include, may benull
or empty to include any scope.excluded
- The set of scopes to exclude, may benull
or empty to exclude no scope.
-
ScopeDependencyFilter
Creates a new filter using the specified excludes.- Parameters:
excluded
- The set of scopes to exclude, may benull
or empty to exclude no scope.
-
-
Method Details
-
accept
Description copied from interface:DependencyFilter
Indicates whether the specified dependency node shall be included or excluded.- Specified by:
accept
in interfaceDependencyFilter
- Parameters:
node
- The dependency node to filter, must not benull
.parents
- The (read-only) chain of parent nodes that leads to the node to be filtered, must not benull
. Iterating this (possibly empty) list walks up the dependency graph towards the root node, i.e. the immediate parent node (if any) is the first node in the list. The size of the list also denotes the zero-based depth of the filtered node.- Returns:
true
to include the dependency node,false
to exclude it.
-
equals
-
hashCode
-