Package org.eclipse.aether.util.filter
Class AndDependencyFilter
- java.lang.Object
-
- org.eclipse.aether.util.filter.AndDependencyFilter
-
- All Implemented Interfaces:
org.eclipse.aether.graph.DependencyFilter
public final class AndDependencyFilter extends java.lang.Object implements org.eclipse.aether.graph.DependencyFilter
A dependency filter that combines zero or more other filters using a logicalAND
. The resulting filter accepts a given dependency node if and only if all constituent filters accept it.
-
-
Constructor Summary
Constructors Constructor Description AndDependencyFilter(java.util.Collection<org.eclipse.aether.graph.DependencyFilter> filters)
Creates a new filter from the specified filters.AndDependencyFilter(org.eclipse.aether.graph.DependencyFilter... filters)
Creates a new filter from the specified filters.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
accept(org.eclipse.aether.graph.DependencyNode node, java.util.List<org.eclipse.aether.graph.DependencyNode> parents)
boolean
equals(java.lang.Object obj)
int
hashCode()
static org.eclipse.aether.graph.DependencyFilter
newInstance(org.eclipse.aether.graph.DependencyFilter filter1, org.eclipse.aether.graph.DependencyFilter filter2)
Creates a new filter from the specified filters.
-
-
-
Constructor Detail
-
AndDependencyFilter
public AndDependencyFilter(org.eclipse.aether.graph.DependencyFilter... filters)
Creates a new filter from the specified filters. PrefernewInstance(DependencyFilter, DependencyFilter)
if any of the input filters might benull
.- Parameters:
filters
- The filters to combine, may benull
but must not containnull
elements.
-
AndDependencyFilter
public AndDependencyFilter(java.util.Collection<org.eclipse.aether.graph.DependencyFilter> filters)
Creates a new filter from the specified filters.- Parameters:
filters
- The filters to combine, may benull
but must not containnull
elements.
-
-
Method Detail
-
newInstance
public static org.eclipse.aether.graph.DependencyFilter newInstance(org.eclipse.aether.graph.DependencyFilter filter1, org.eclipse.aether.graph.DependencyFilter filter2)
Creates a new filter from the specified filters.- Parameters:
filter1
- The first filter to combine, may benull
.filter2
- The second filter to combine, may benull
.- Returns:
- The combined filter or
null
if both filter werenull
.
-
accept
public boolean accept(org.eclipse.aether.graph.DependencyNode node, java.util.List<org.eclipse.aether.graph.DependencyNode> parents)
- Specified by:
accept
in interfaceorg.eclipse.aether.graph.DependencyFilter
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-