|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.sonatype.aether.util.filter.OrDependencyFilter
public class OrDependencyFilter
A dependency filter that combines zero or more other filters using a logical OR
.
Constructor Summary | |
---|---|
OrDependencyFilter(Collection<DependencyFilter> filters)
Creates a new filter from the specified filters. |
|
OrDependencyFilter(DependencyFilter... filters)
Creates a new filter from the specified filters. |
Method Summary | |
---|---|
boolean |
accept(DependencyNode node,
List<DependencyNode> parents)
Indicates whether the specified dependency node shall be included or excluded. |
boolean |
equals(Object obj)
|
int |
hashCode()
|
static DependencyFilter |
newInstance(DependencyFilter filter1,
DependencyFilter filter2)
Creates a new filter from the specified filters. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public OrDependencyFilter(DependencyFilter... filters)
filters
- The filters to combine, may be null
.public OrDependencyFilter(Collection<DependencyFilter> filters)
filters
- The filters to combine, may be null
.Method Detail |
---|
public static DependencyFilter newInstance(DependencyFilter filter1, DependencyFilter filter2)
filter1
- The first filter to combine, may be null
.filter2
- The first filter to combine, may be null
.
null
if both filter were null
.public boolean accept(DependencyNode node, 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(Object obj)
equals
in class Object
public int hashCode()
hashCode
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |