Package org.eclipse.aether.util.filter
Class ScopeDependencyFilter
- java.lang.Object
-
- org.eclipse.aether.util.filter.ScopeDependencyFilter
-
- All Implemented Interfaces:
org.eclipse.aether.graph.DependencyFilter
public final class ScopeDependencyFilter extends java.lang.Object implements org.eclipse.aether.graph.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:
Dependency.getScope()
-
-
Constructor Summary
Constructors Constructor Description ScopeDependencyFilter(java.lang.String... excluded)
Creates a new filter using the specified excludes.ScopeDependencyFilter(java.util.Collection<java.lang.String> included, java.util.Collection<java.lang.String> excluded)
Creates a new filter using the specified includes and excludes.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
accept(org.eclipse.aether.graph.DependencyNode node, java.util.List<org.eclipse.aether.graph.DependencyNode> parents)
boolean
equals(java.lang.Object obj)
int
hashCode()
-
-
-
Constructor Detail
-
ScopeDependencyFilter
public ScopeDependencyFilter(java.util.Collection<java.lang.String> included, java.util.Collection<java.lang.String> excluded)
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
public ScopeDependencyFilter(java.lang.String... excluded)
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 Detail
-
accept
public boolean accept(org.eclipse.aether.graph.DependencyNode node, java.util.List<org.eclipse.aether.graph.DependencyNode> parents)
- Specified by:
accept
in interfaceorg.eclipse.aether.graph.DependencyFilter
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-