Package org.eclipse.aether.util.filter
Class NotDependencyFilter
- java.lang.Object
-
- org.eclipse.aether.util.filter.NotDependencyFilter
-
- All Implemented Interfaces:
DependencyFilter
public final class NotDependencyFilter extends java.lang.Object implements DependencyFilter
A dependency filter that negates another filter.
-
-
Field Summary
Fields Modifier and Type Field Description private DependencyFilter
filter
-
Constructor Summary
Constructors Constructor Description NotDependencyFilter(DependencyFilter filter)
Creates a new filter negatint the specified filter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method 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()
-
-
-
Field Detail
-
filter
private final DependencyFilter filter
-
-
Constructor Detail
-
NotDependencyFilter
public NotDependencyFilter(DependencyFilter filter)
Creates a new filter negatint the specified filter.- Parameters:
filter
- The filter to negate, must not benull
.
-
-
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.
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-