Package org.eclipse.aether.util.filter
Class OrDependencyFilter
- java.lang.Object
-
- org.eclipse.aether.util.filter.OrDependencyFilter
-
- All Implemented Interfaces:
DependencyFilter
public final class OrDependencyFilter extends java.lang.Object implements DependencyFilter
A dependency filter that combines zero or more other filters using a logicalOR.
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Set<DependencyFilter>filters
-
Constructor Summary
Constructors Constructor Description OrDependencyFilter(java.util.Collection<DependencyFilter> filters)Creates a new filter from the specified filters.OrDependencyFilter(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 booleanaccept(DependencyNode node, java.util.List<DependencyNode> parents)Indicates whether the specified dependency node shall be included or excluded.booleanequals(java.lang.Object obj)inthashCode()static DependencyFilternewInstance(DependencyFilter filter1, DependencyFilter filter2)Creates a new filter from the specified filters.
-
-
-
Field Detail
-
filters
private final java.util.Set<DependencyFilter> filters
-
-
Constructor Detail
-
OrDependencyFilter
public OrDependencyFilter(DependencyFilter... filters)
Creates a new filter from the specified filters.- Parameters:
filters- The filters to combine, may benull.
-
OrDependencyFilter
public OrDependencyFilter(java.util.Collection<DependencyFilter> filters)
Creates a new filter from the specified filters.- Parameters:
filters- The filters to combine, may benull.
-
-
Method Detail
-
newInstance
public static DependencyFilter newInstance(DependencyFilter filter1, DependencyFilter filter2)
Creates a new filter from the specified filters.- Parameters:
filter1- The first filter to combine, may benull.filter2- The first filter to combine, may benull.- Returns:
- The combined filter or
nullif both filter werenull.
-
accept
public boolean accept(DependencyNode node, java.util.List<DependencyNode> parents)
Description copied from interface:DependencyFilterIndicates whether the specified dependency node shall be included or excluded.- Specified by:
acceptin 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:
trueto include the dependency node,falseto exclude it.
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-