Uses of Interface
org.sonatype.aether.graph.DependencyFilter

Packages that use DependencyFilter
org.sonatype.aether   
org.sonatype.aether.impl.internal   
org.sonatype.aether.resolution   
org.sonatype.aether.util.filter   
org.sonatype.aether.util.graph   
 

Uses of DependencyFilter in org.sonatype.aether
 

Methods in org.sonatype.aether with parameters of type DependencyFilter
 java.util.List<ArtifactResult> RepositorySystem.resolveDependencies(RepositorySystemSession session, CollectRequest request, DependencyFilter filter)
          Deprecated. Use RepositorySystem.resolveDependencies(RepositorySystemSession, DependencyRequest) instead.
 java.util.List<ArtifactResult> RepositorySystem.resolveDependencies(RepositorySystemSession session, DependencyNode node, DependencyFilter filter)
          Deprecated. Use RepositorySystem.resolveDependencies(RepositorySystemSession, DependencyRequest) instead.
 

Uses of DependencyFilter in org.sonatype.aether.impl.internal
 

Methods in org.sonatype.aether.impl.internal with parameters of type DependencyFilter
 java.util.List<ArtifactResult> DefaultRepositorySystem.resolveDependencies(RepositorySystemSession session, CollectRequest request, DependencyFilter filter)
           
 java.util.List<ArtifactResult> DefaultRepositorySystem.resolveDependencies(RepositorySystemSession session, DependencyNode node, DependencyFilter filter)
           
 

Uses of DependencyFilter in org.sonatype.aether.resolution
 

Methods in org.sonatype.aether.resolution that return DependencyFilter
 DependencyFilter DependencyRequest.getFilter()
          Gets the resolution filter used to select which artifacts of the dependency graph should be resolved.
 

Methods in org.sonatype.aether.resolution with parameters of type DependencyFilter
 DependencyRequest DependencyRequest.setFilter(DependencyFilter filter)
          Sets the resolution filter used to select which artifacts of the dependency graph should be resolved.
 

Constructors in org.sonatype.aether.resolution with parameters of type DependencyFilter
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.sonatype.aether.util.filter
 

Classes in org.sonatype.aether.util.filter that implement DependencyFilter
 class AndDependencyFilter
          A dependency filter that combines zero or more other filters using a logical AND.
 class ExclusionsDependencyFilter
          A simple filter to exclude artifacts based either artifact id or group id and artifact id.
 class NotDependencyFilter
          A dependency filter that negates another filters.
 class OrDependencyFilter
          A dependency filter that combines zero or more other filters using a logical OR.
 class PatternExclusionsDependencyFilter
          A simple filter to exclude artifacts from a list of patterns.
 class PatternInclusionsDependencyFilter
          A simple filter to include artifacts from a list of patterns.
 class ScopeDependencyFilter
          A dependency filter based on dependency scopes.
 

Methods in org.sonatype.aether.util.filter that return DependencyFilter
static DependencyFilter DependencyFilterUtils.andFilter(java.util.Collection<DependencyFilter> filters)
          Creates a new filter that combines the specified filters using a logical AND.
static DependencyFilter DependencyFilterUtils.andFilter(DependencyFilter... filters)
          Creates a new filter that combines the specified filters using a logical AND.
static DependencyFilter DependencyFilterUtils.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 DependencyFilter DependencyFilterUtils.classpathFilter(java.lang.String... classpathTypes)
          Creates a new filter that selects dependencies whose scope matches one or more of the specified classpath types.
static DependencyFilter OrDependencyFilter.newInstance(DependencyFilter filter1, DependencyFilter filter2)
          Creates a new filter from the specified filters.
static DependencyFilter AndDependencyFilter.newInstance(DependencyFilter filter1, DependencyFilter filter2)
          Creates a new filter from the specified filters.
static DependencyFilter DependencyFilterUtils.notFilter(DependencyFilter filter)
          Creates a new filter that negates the specified filter.
static DependencyFilter DependencyFilterUtils.orFilter(java.util.Collection<DependencyFilter> filters)
          Creates a new filter that combines the specified filters using a logical OR.
static DependencyFilter DependencyFilterUtils.orFilter(DependencyFilter... filters)
          Creates a new filter that combines the specified filters using a logical OR.
 

Methods in org.sonatype.aether.util.filter with parameters of type DependencyFilter
static DependencyFilter DependencyFilterUtils.andFilter(DependencyFilter... filters)
          Creates a new filter that combines the specified filters using a logical AND.
static DependencyFilter OrDependencyFilter.newInstance(DependencyFilter filter1, DependencyFilter filter2)
          Creates a new filter from the specified filters.
static DependencyFilter AndDependencyFilter.newInstance(DependencyFilter filter1, DependencyFilter filter2)
          Creates a new filter from the specified filters.
static DependencyFilter DependencyFilterUtils.notFilter(DependencyFilter filter)
          Creates a new filter that negates the specified filter.
static DependencyFilter DependencyFilterUtils.orFilter(DependencyFilter... filters)
          Creates a new filter that combines the specified filters using a logical OR.
 

Method parameters in org.sonatype.aether.util.filter with type arguments of type DependencyFilter
static DependencyFilter DependencyFilterUtils.andFilter(java.util.Collection<DependencyFilter> filters)
          Creates a new filter that combines the specified filters using a logical AND.
static DependencyFilter DependencyFilterUtils.orFilter(java.util.Collection<DependencyFilter> filters)
          Creates a new filter that combines the specified filters using a logical OR.
 

Constructors in org.sonatype.aether.util.filter with parameters of type DependencyFilter
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.sonatype.aether.util.filter with type arguments of type DependencyFilter
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.sonatype.aether.util.graph
 

Methods in org.sonatype.aether.util.graph that return DependencyFilter
 DependencyFilter FilteringDependencyVisitor.getFilter()
          Gets the filter being applied before delegation.
 

Constructors in org.sonatype.aether.util.graph with parameters of type DependencyFilter
FilteringDependencyVisitor(DependencyVisitor visitor, DependencyFilter filter)
          Creates a new visitor that delegates traversal of nodes matching the given filter to the specified visitor.
 



Copyright © 2010-2011 Sonatype, Inc.. All Rights Reserved.