public final class NotDependencyFilter extends java.lang.Object implements DependencyFilter
Modifier and Type | Field and Description |
---|---|
private DependencyFilter |
filter |
Constructor and Description |
---|
NotDependencyFilter(DependencyFilter filter)
Creates a new filter negatint the specified filter.
|
Modifier and Type | Method and Description |
---|---|
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 final DependencyFilter filter
public NotDependencyFilter(DependencyFilter filter)
filter
- The filter to negate, must not be null
.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