Package org.eclipse.aether.util.filter
Class AbstractPatternDependencyFilter
java.lang.Object
org.eclipse.aether.util.filter.AbstractPatternDependencyFilter
- All Implemented Interfaces:
DependencyFilter
- Direct Known Subclasses:
PatternExclusionsDependencyFilter
,PatternInclusionsDependencyFilter
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionAbstractPatternDependencyFilter
(String... patterns) Creates a new filter using the specified patterns.AbstractPatternDependencyFilter
(Collection<String> patterns) Creates a new filter using the specified patterns.AbstractPatternDependencyFilter
(VersionScheme versionScheme, String... patterns) Creates a new filter using the specified patterns.AbstractPatternDependencyFilter
(VersionScheme versionScheme, Collection<String> patterns) Creates a new filter using the specified patterns andVersionScheme
. -
Method Summary
Modifier and TypeMethodDescriptionprotected boolean
private boolean
boolean
accept
(DependencyNode node, List<DependencyNode> parents) Indicates whether the specified dependency node shall be included or excluded.boolean
int
hashCode()
private boolean
isVersionIncludedInRange
(String version, String range) private boolean
-
Field Details
-
patterns
-
versionScheme
-
-
Constructor Details
-
AbstractPatternDependencyFilter
AbstractPatternDependencyFilter(String... patterns) Creates a new filter using the specified patterns.- Parameters:
patterns
- The include patterns, may benull
or empty to include no artifacts.
-
AbstractPatternDependencyFilter
AbstractPatternDependencyFilter(VersionScheme versionScheme, String... patterns) Creates a new filter using the specified patterns.- Parameters:
versionScheme
- To be used for parsing versions/version ranges. Ifnull
and pattern specifies a range no artifact will be included.patterns
- The include patterns, may benull
or empty to include no artifacts.
-
AbstractPatternDependencyFilter
AbstractPatternDependencyFilter(Collection<String> patterns) Creates a new filter using the specified patterns.- Parameters:
patterns
- The include patterns, may benull
or empty to include no artifacts.
-
AbstractPatternDependencyFilter
AbstractPatternDependencyFilter(VersionScheme versionScheme, Collection<String> patterns) Creates a new filter using the specified patterns andVersionScheme
.- Parameters:
versionScheme
- To be used for parsing versions/version ranges. Ifnull
and pattern specifies a range no artifact will be included.patterns
- The include patterns, may benull
or empty to include no artifacts.
-
-
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.
-
accept
-
accept
-
matches
-
isVersionIncludedInRange
-
equals
-
hashCode
public int hashCode()
-