|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.sonatype.aether.util.filter.PatternInclusionsDependencyFilter
public class PatternInclusionsDependencyFilter
A simple filter to include artifacts from a list of patterns. The artifact pattern syntax is of the form:
[groupId]:[artifactId]:[extension]:[version]
Where each pattern segment is optional and supports full and partial *
wildcards. An empty pattern
segment is treated as an implicit wildcard. Version can be a range in case a VersionScheme
is specified.
For example, org.apache.*
would match all artifacts whose group id started with org.apache.
, and :::*-SNAPSHOT
would match all snapshot artifacts.
Constructor Summary | |
---|---|
PatternInclusionsDependencyFilter(java.util.Collection<java.lang.String> patterns)
Creates a new filter using the specified patterns. |
|
PatternInclusionsDependencyFilter(java.lang.String... patterns)
Creates a new filter using the specified patterns. |
|
PatternInclusionsDependencyFilter(VersionScheme versionScheme,
java.util.Collection<java.lang.String> patterns)
Creates a new filter using the specified patterns and VersionScheme . |
|
PatternInclusionsDependencyFilter(VersionScheme versionScheme,
java.lang.String... patterns)
Creates a new filter using the specified patterns. |
Method Summary | |
---|---|
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()
|
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public PatternInclusionsDependencyFilter(java.lang.String... patterns)
patterns
- The include patterns, may be null
or empty to include no artifacts.public PatternInclusionsDependencyFilter(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.public PatternInclusionsDependencyFilter(java.util.Collection<java.lang.String> patterns)
patterns
- The include patterns, may be null
or empty to include no artifacts.public PatternInclusionsDependencyFilter(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.Method Detail |
---|
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.public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |