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
class AbstractPatternDependencyFilter extends java.lang.Object implements DependencyFilter
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Set<java.lang.String>
patterns
private VersionScheme
versionScheme
-
Constructor Summary
Constructors Constructor Description AbstractPatternDependencyFilter(java.lang.String... patterns)
Creates a new filter using the specified patterns.AbstractPatternDependencyFilter(java.util.Collection<java.lang.String> patterns)
Creates a new filter using the specified patterns.AbstractPatternDependencyFilter(VersionScheme versionScheme, 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 andVersionScheme
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method 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)
-
-
-
Field Detail
-
patterns
private final java.util.Set<java.lang.String> patterns
-
versionScheme
private final VersionScheme versionScheme
-
-
Constructor Detail
-
AbstractPatternDependencyFilter
AbstractPatternDependencyFilter(java.lang.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, java.lang.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(java.util.Collection<java.lang.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, java.util.Collection<java.lang.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 Detail
-
accept
public boolean accept(DependencyNode node, java.util.List<DependencyNode> parents)
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
protected boolean accept(Artifact artifact)
-
accept
private boolean accept(Artifact artifact, java.lang.String pattern)
-
matches
private boolean matches(java.lang.String token, java.lang.String pattern)
-
isVersionIncludedInRange
private boolean isVersionIncludedInRange(java.lang.String version, java.lang.String range)
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-