Uses of Interface
org.eclipse.aether.graph.DependencyFilter
-
Packages that use DependencyFilter Package Description org.eclipse.aether.resolution The types supporting the resolution of artifacts and metadata from repositories.org.eclipse.aether.util.filter Various dependency filters for selecting nodes in a dependency graph.org.eclipse.aether.util.graph.visitor Various dependency visitors for inspecting a dependency graph. -
-
Uses of DependencyFilter in org.eclipse.aether.resolution
Fields in org.eclipse.aether.resolution declared as DependencyFilter Modifier and Type Field Description private DependencyFilterDependencyRequest. filterMethods in org.eclipse.aether.resolution that return DependencyFilter Modifier and Type Method Description DependencyFilterDependencyRequest. getFilter()Gets the resolution filter used to select which artifacts of the dependency graph should be resolved.Methods in org.eclipse.aether.resolution with parameters of type DependencyFilter Modifier and Type Method Description DependencyRequestDependencyRequest. setFilter(DependencyFilter filter)Sets the resolution filter used to select which artifacts of the dependency graph should be resolved.Constructors in org.eclipse.aether.resolution with parameters of type DependencyFilter Constructor Description DependencyRequest(CollectRequest request, DependencyFilter filter)Creates a request for the specified collect request and with the given resolution filter.DependencyRequest(DependencyNode node, DependencyFilter filter)Creates a request for the specified dependency graph and with the given resolution filter. -
Uses of DependencyFilter in org.eclipse.aether.util.filter
Classes in org.eclipse.aether.util.filter that implement DependencyFilter Modifier and Type Class Description (package private) classAbstractPatternDependencyFilterclassAndDependencyFilterA dependency filter that combines zero or more other filters using a logicalAND.classExclusionsDependencyFilterA simple filter to exclude artifacts based on either artifact id or group id and artifact id.classNotDependencyFilterA dependency filter that negates another filter.classOrDependencyFilterA dependency filter that combines zero or more other filters using a logicalOR.classPatternExclusionsDependencyFilterA simple filter to exclude artifacts from a list of patterns.classPatternInclusionsDependencyFilterA simple filter to include artifacts from a list of patterns.classScopeDependencyFilterA dependency filter based on dependency scopes.Fields in org.eclipse.aether.util.filter declared as DependencyFilter Modifier and Type Field Description private DependencyFilterNotDependencyFilter. filterFields in org.eclipse.aether.util.filter with type parameters of type DependencyFilter Modifier and Type Field Description private java.util.Set<DependencyFilter>AndDependencyFilter. filtersprivate java.util.Set<DependencyFilter>OrDependencyFilter. filtersMethods in org.eclipse.aether.util.filter that return DependencyFilter Modifier and Type Method Description static DependencyFilterDependencyFilterUtils. andFilter(java.util.Collection<DependencyFilter> filters)Creates a new filter that combines the specified filters using a logicalAND.static DependencyFilterDependencyFilterUtils. andFilter(DependencyFilter... filters)Creates a new filter that combines the specified filters using a logicalAND.static DependencyFilterDependencyFilterUtils. classpathFilter(java.lang.String... classpathTypes)Creates a new filter that selects dependencies whose scope matches one or more of the specified classpath types.static DependencyFilterDependencyFilterUtils. classpathFilter(java.util.Collection<java.lang.String> classpathTypes)Creates a new filter that selects dependencies whose scope matches one or more of the specified classpath types.static DependencyFilterAndDependencyFilter. newInstance(DependencyFilter filter1, DependencyFilter filter2)Creates a new filter from the specified filters.static DependencyFilterOrDependencyFilter. newInstance(DependencyFilter filter1, DependencyFilter filter2)Creates a new filter from the specified filters.static DependencyFilterDependencyFilterUtils. notFilter(DependencyFilter filter)Creates a new filter that negates the specified filter.static DependencyFilterDependencyFilterUtils. orFilter(java.util.Collection<DependencyFilter> filters)Creates a new filter that combines the specified filters using a logicalOR.static DependencyFilterDependencyFilterUtils. orFilter(DependencyFilter... filters)Creates a new filter that combines the specified filters using a logicalOR.Methods in org.eclipse.aether.util.filter with parameters of type DependencyFilter Modifier and Type Method Description static DependencyFilterDependencyFilterUtils. andFilter(DependencyFilter... filters)Creates a new filter that combines the specified filters using a logicalAND.static DependencyFilterAndDependencyFilter. newInstance(DependencyFilter filter1, DependencyFilter filter2)Creates a new filter from the specified filters.static DependencyFilterOrDependencyFilter. newInstance(DependencyFilter filter1, DependencyFilter filter2)Creates a new filter from the specified filters.static DependencyFilterDependencyFilterUtils. notFilter(DependencyFilter filter)Creates a new filter that negates the specified filter.static DependencyFilterDependencyFilterUtils. orFilter(DependencyFilter... filters)Creates a new filter that combines the specified filters using a logicalOR.Method parameters in org.eclipse.aether.util.filter with type arguments of type DependencyFilter Modifier and Type Method Description static DependencyFilterDependencyFilterUtils. andFilter(java.util.Collection<DependencyFilter> filters)Creates a new filter that combines the specified filters using a logicalAND.static DependencyFilterDependencyFilterUtils. orFilter(java.util.Collection<DependencyFilter> filters)Creates a new filter that combines the specified filters using a logicalOR.Constructors in org.eclipse.aether.util.filter with parameters of type DependencyFilter Constructor Description AndDependencyFilter(DependencyFilter... filters)Creates a new filter from the specified filters.NotDependencyFilter(DependencyFilter filter)Creates a new filter negatint the specified filter.OrDependencyFilter(DependencyFilter... filters)Creates a new filter from the specified filters.Constructor parameters in org.eclipse.aether.util.filter with type arguments of type DependencyFilter Constructor Description AndDependencyFilter(java.util.Collection<DependencyFilter> filters)Creates a new filter from the specified filters.OrDependencyFilter(java.util.Collection<DependencyFilter> filters)Creates a new filter from the specified filters. -
Uses of DependencyFilter in org.eclipse.aether.util.graph.visitor
Fields in org.eclipse.aether.util.graph.visitor declared as DependencyFilter Modifier and Type Field Description private DependencyFilterFilteringDependencyVisitor. filterprivate DependencyFilterPathRecordingDependencyVisitor. filterMethods in org.eclipse.aether.util.graph.visitor that return DependencyFilter Modifier and Type Method Description DependencyFilterFilteringDependencyVisitor. getFilter()Gets the filter being applied before delegation.DependencyFilterPathRecordingDependencyVisitor. getFilter()Gets the filter being used to select terminal nodes.Constructors in org.eclipse.aether.util.graph.visitor with parameters of type DependencyFilter Constructor Description FilteringDependencyVisitor(DependencyVisitor visitor, DependencyFilter filter)Creates a new visitor that delegates traversal of nodes matching the given filter to the specified visitor.PathRecordingDependencyVisitor(DependencyFilter filter)Creates a new visitor that uses the specified filter to identify terminal nodes of interesting paths.PathRecordingDependencyVisitor(DependencyFilter filter, boolean excludeChildrenOfMatches)Creates a new visitor that uses the specified filter to identify terminal nodes of interesting paths.
-