|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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 | |
---|---|
List<ArtifactResult> |
RepositorySystem.resolveDependencies(RepositorySystemSession session,
CollectRequest request,
DependencyFilter filter)
Deprecated. As of version 1.11, use RepositorySystem.resolveDependencies(RepositorySystemSession, DependencyRequest)
instead. |
List<ArtifactResult> |
RepositorySystem.resolveDependencies(RepositorySystemSession session,
DependencyNode node,
DependencyFilter filter)
Deprecated. As of version 1.11, 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 | |
---|---|
List<ArtifactResult> |
DefaultRepositorySystem.resolveDependencies(RepositorySystemSession session,
CollectRequest request,
DependencyFilter filter)
|
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 filter. |
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(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(Collection<String> classpathTypes)
Creates a new filter that selects dependencies whose scope matches one or more of the specified classpath types. |
static DependencyFilter |
DependencyFilterUtils.classpathFilter(String... classpathTypes)
Creates a new filter that selects dependencies whose scope matches one or more of the specified classpath types. |
static DependencyFilter |
AndDependencyFilter.newInstance(DependencyFilter filter1,
DependencyFilter filter2)
Creates a new filter from the specified filters. |
static DependencyFilter |
OrDependencyFilter.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(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 |
AndDependencyFilter.newInstance(DependencyFilter filter1,
DependencyFilter filter2)
Creates a new filter from the specified filters. |
static DependencyFilter |
OrDependencyFilter.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(Collection<DependencyFilter> filters)
Creates a new filter that combines the specified filters using a logical AND . |
static DependencyFilter |
DependencyFilterUtils.orFilter(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(Collection<DependencyFilter> filters)
Creates a new filter from the specified filters. |
|
OrDependencyFilter(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 |
PathRecordingDependencyVisitor.getFilter()
Gets the filter being used to select terminal nodes. |
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. |
|
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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |