class AbstractPatternDependencyFilter extends java.lang.Object implements DependencyFilter
Modifier and Type | Field and Description |
---|---|
private java.util.Set<java.lang.String> |
patterns |
private VersionScheme |
versionScheme |
Constructor and Description |
---|
AbstractPatternDependencyFilter(java.util.Collection<java.lang.String> patterns)
Creates a new filter using the specified patterns.
|
AbstractPatternDependencyFilter(java.lang.String... patterns)
Creates a new filter using the specified patterns.
|
AbstractPatternDependencyFilter(VersionScheme versionScheme,
java.util.Collection<java.lang.String> patterns)
Creates a new filter using the specified patterns and
VersionScheme . |
AbstractPatternDependencyFilter(VersionScheme versionScheme,
java.lang.String... patterns)
Creates a new filter using the specified patterns.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
accept(Artifact artifact) |
private boolean |
accept(Artifact artifact,
java.lang.String pattern) |
boolean |
accept(DependencyNode node,
java.util.List<DependencyNode> parents)
Indicates whether the specified dependency node shall be included or excluded.
|
boolean |
equals(java.lang.Object obj) |
int |
hashCode() |
private boolean |
isVersionIncludedInRange(java.lang.String version,
java.lang.String range) |
private boolean |
matches(java.lang.String token,
java.lang.String pattern) |
private final java.util.Set<java.lang.String> patterns
private final VersionScheme versionScheme
AbstractPatternDependencyFilter(java.lang.String... patterns)
patterns
- The include patterns, may be null
or empty to include no artifacts.AbstractPatternDependencyFilter(VersionScheme versionScheme, java.lang.String... patterns)
versionScheme
- To be used for parsing versions/version ranges. If null
and pattern specifies a
range no artifact will be included.patterns
- The include patterns, may be null
or empty to include no artifacts.AbstractPatternDependencyFilter(java.util.Collection<java.lang.String> patterns)
patterns
- The include patterns, may be null
or empty to include no artifacts.AbstractPatternDependencyFilter(VersionScheme versionScheme, java.util.Collection<java.lang.String> patterns)
VersionScheme
.versionScheme
- To be used for parsing versions/version ranges. If null
and pattern specifies a
range no artifact will be included.patterns
- The include patterns, may be null
or empty to include no artifacts.public boolean accept(DependencyNode node, java.util.List<DependencyNode> parents)
DependencyFilter
accept
in interface DependencyFilter
node
- The dependency node to filter, must not be null
.parents
- The (read-only) chain of parent nodes that leads to the node to be filtered, must not be
null
. 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.true
to include the dependency node, false
to exclude it.protected boolean accept(Artifact artifact)
private boolean accept(Artifact artifact, java.lang.String pattern)
private boolean matches(java.lang.String token, java.lang.String pattern)
private boolean isVersionIncludedInRange(java.lang.String version, java.lang.String range)
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object