Uses of Interface
org.apache.ivy.util.filter.Filter
-
Packages that use Filter Package Description org.apache.ivy org.apache.ivy.ant org.apache.ivy.core.event org.apache.ivy.core.install org.apache.ivy.core.module.id This packages gathers classes used to represent identifiers of objects involved in dependency management.org.apache.ivy.core.report org.apache.ivy.core.resolve org.apache.ivy.core.retrieve org.apache.ivy.plugins.trigger org.apache.ivy.util.filter -
-
Uses of Filter in org.apache.ivy
Methods in org.apache.ivy with parameters of type Filter Modifier and Type Method Description java.util.Map<ArtifactDownloadReport,java.util.Set<java.lang.String>>
Ivy14. determineArtifactsToCopy(ModuleId moduleId, java.lang.String[] confs, java.io.File cache, java.lang.String destFilePattern, java.lang.String destIvyPattern, Filter<Artifact> artifactFilter)
ResolveReport
Ivy14. install(ModuleRevisionId mrid, java.lang.String from, java.lang.String to, boolean transitive, boolean validate, boolean overwrite, Filter<Artifact> artifactFilter, java.io.File cache, java.lang.String matcherName)
private ResolveOptions
Ivy14. newResolveOptions(java.lang.String[] confs, java.lang.String revision, java.io.File cache, java.util.Date date, boolean validate, boolean useCacheOnly, boolean transitive, boolean useOrigin, boolean download, boolean outputReport, Filter<Artifact> artifactFilter)
ResolveReport
Ivy14. resolve(java.net.URL ivySource, java.lang.String revision, java.lang.String[] confs, java.io.File cache, java.util.Date date, boolean validate, boolean useCacheOnly, boolean transitive, boolean useOrigin, Filter<Artifact> artifactFilter)
ResolveReport
Ivy14. resolve(java.net.URL ivySource, java.lang.String revision, java.lang.String[] confs, java.io.File cache, java.util.Date date, boolean validate, boolean useCacheOnly, boolean transitive, Filter<Artifact> artifactFilter)
ResolveReport
Ivy14. resolve(java.net.URL ivySource, java.lang.String revision, java.lang.String[] confs, java.io.File cache, java.util.Date date, boolean validate, boolean useCacheOnly, Filter<Artifact> artifactFilter)
ResolveReport
Ivy14. resolve(ModuleDescriptor md, java.lang.String[] confs, java.io.File cache, java.util.Date date, boolean validate, boolean useCacheOnly, boolean transitive, boolean useOrigin, boolean download, boolean outputReport, Filter<Artifact> artifactFilter)
ResolveReport
Ivy14. resolve(ModuleDescriptor md, java.lang.String[] confs, java.io.File cache, java.util.Date date, boolean validate, boolean useCacheOnly, boolean transitive, boolean download, boolean outputReport, Filter<Artifact> artifactFilter)
ResolveReport
Ivy14. resolve(ModuleDescriptor md, java.lang.String[] confs, java.io.File cache, java.util.Date date, boolean validate, boolean useCacheOnly, boolean transitive, Filter<Artifact> artifactFilter)
ResolveReport
Ivy14. resolve(ModuleDescriptor md, java.lang.String[] confs, java.io.File cache, java.util.Date date, boolean validate, boolean useCacheOnly, Filter<Artifact> artifactFilter)
ResolveReport
Ivy14. resolve(ModuleRevisionId mrid, java.lang.String[] confs, boolean transitive, boolean changing, java.io.File cache, java.util.Date date, boolean validate, boolean useCacheOnly, boolean useOrigin, Filter<Artifact> artifactFilter)
ResolveReport
Ivy14. resolve(ModuleRevisionId mrid, java.lang.String[] confs, boolean transitive, boolean changing, java.io.File cache, java.util.Date date, boolean validate, boolean useCacheOnly, Filter<Artifact> artifactFilter)
int
Ivy14. retrieve(ModuleId moduleId, java.lang.String[] confs, java.io.File cache, java.lang.String destFilePattern, java.lang.String destIvyPattern, Filter<Artifact> artifactFilter)
int
Ivy14. retrieve(ModuleId moduleId, java.lang.String[] confs, java.io.File cache, java.lang.String destFilePattern, java.lang.String destIvyPattern, Filter<Artifact> artifactFilter, boolean sync, boolean useOrigin)
int
Ivy14. retrieve(ModuleId moduleId, java.lang.String[] confs, java.io.File cache, java.lang.String destFilePattern, java.lang.String destIvyPattern, Filter<Artifact> artifactFilter, boolean sync, boolean useOrigin, boolean makeSymlinks)
-
Uses of Filter in org.apache.ivy.ant
Fields in org.apache.ivy.ant declared as Filter Modifier and Type Field Description private Filter<Artifact>
IvyPostResolveTask. artifactFilter
Methods in org.apache.ivy.ant that return Filter Modifier and Type Method Description Filter<Artifact>
IvyPostResolveTask. getArtifactFilter()
-
Uses of Filter in org.apache.ivy.core.event
Classes in org.apache.ivy.core.event that implement Filter Modifier and Type Class Description class
IvyEventFilter
A filter implementation filteringIvyEvent
based upon an event name and a filter expression.Fields in org.apache.ivy.core.event declared as Filter Modifier and Type Field Description private Filter<IvyEvent>
IvyEventFilter. attFilter
private Filter<IvyEvent>
FilteredIvyListener. filter
private Filter<IvyEvent>
IvyEventFilter. nameFilter
Methods in org.apache.ivy.core.event that return Filter Modifier and Type Method Description Filter<IvyEvent>
FilteredIvyListener. getFilter()
private Filter<IvyEvent>
IvyEventFilter. parseExpression(java.lang.String filterExpression)
Methods in org.apache.ivy.core.event with parameters of type Filter Modifier and Type Method Description void
EventManager. addIvyListener(IvyListener listener, Filter<IvyEvent> filter)
Constructors in org.apache.ivy.core.event with parameters of type Filter Constructor Description FilteredIvyListener(IvyListener listener, Filter<IvyEvent> filter)
-
Uses of Filter in org.apache.ivy.core.install
Fields in org.apache.ivy.core.install declared as Filter Modifier and Type Field Description private Filter<Artifact>
InstallOptions. artifactFilter
Methods in org.apache.ivy.core.install that return Filter Modifier and Type Method Description Filter<Artifact>
InstallOptions. getArtifactFilter()
Methods in org.apache.ivy.core.install with parameters of type Filter Modifier and Type Method Description InstallOptions
InstallOptions. setArtifactFilter(Filter<Artifact> artifactFilter)
-
Uses of Filter in org.apache.ivy.core.module.id
Methods in org.apache.ivy.core.module.id with parameters of type Filter Modifier and Type Method Description private T
ModuleRules. getRule(java.util.Map<java.lang.String,java.lang.String> moduleAttributes, Filter<T> filter)
T
ModuleRules. getRule(ModuleId mid, Filter<T> filter)
T
ModuleRules. getRule(ModuleRevisionId mrid, Filter<T> filter)
Returns the rule object matching the givenModuleRevisionId
and accepted by the givenFilter
, ornull
if no rule applies.private java.util.List<T>
ModuleRules. getRules(java.util.Map<java.lang.String,java.lang.String> moduleAttributes, Filter<T> filter)
java.util.List<T>
ModuleRules. getRules(ModuleRevisionId mrid, Filter<T> filter)
Returns the rules object matching the givenModuleRevisionId
and accepted by the givenFilter
, or an empty array if no rule applies. -
Uses of Filter in org.apache.ivy.core.report
Methods in org.apache.ivy.core.report with parameters of type Filter Modifier and Type Method Description void
ResolveReport. setDependencies(java.util.List<IvyNode> dependencies, Filter<Artifact> artifactFilter)
-
Uses of Filter in org.apache.ivy.core.resolve
Fields in org.apache.ivy.core.resolve declared as Filter Modifier and Type Field Description private Filter<Artifact>
ResolveOptions. artifactFilter
A filter to use to avoid downloading all artifacts.Methods in org.apache.ivy.core.resolve that return Filter Modifier and Type Method Description Filter<Artifact>
ResolveOptions. getArtifactFilter()
Methods in org.apache.ivy.core.resolve with parameters of type Filter Modifier and Type Method Description void
ResolveEngine. downloadArtifacts(ResolveReport report, Filter<Artifact> artifactFilter, DownloadOptions options)
Artifact[]
IvyNode. getSelectedArtifacts(Filter<Artifact> artifactFilter)
Returns all the artifacts of this dependency required in the root module configurations in which the node is not evicted nor blacklistedResolveOptions
ResolveOptions. setArtifactFilter(Filter<Artifact> artifactFilter)
-
Uses of Filter in org.apache.ivy.core.retrieve
Fields in org.apache.ivy.core.retrieve declared as Filter Modifier and Type Field Description private Filter<Artifact>
RetrieveOptions. artifactFilter
The filter to apply before retrieving artifacts.Methods in org.apache.ivy.core.retrieve that return Filter Modifier and Type Method Description Filter<Artifact>
RetrieveOptions. getArtifactFilter()
Methods in org.apache.ivy.core.retrieve with parameters of type Filter Modifier and Type Method Description RetrieveOptions
RetrieveOptions. setArtifactFilter(Filter<Artifact> artifactFilter)
-
Uses of Filter in org.apache.ivy.plugins.trigger
Fields in org.apache.ivy.plugins.trigger declared as Filter Modifier and Type Field Description private Filter<IvyEvent>
AbstractTrigger. filter
Methods in org.apache.ivy.plugins.trigger that return Filter Modifier and Type Method Description private Filter<IvyEvent>
AbstractTrigger. createFilter()
Filter<IvyEvent>
AbstractTrigger. getEventFilter()
Filter<IvyEvent>
Trigger. getEventFilter()
-
Uses of Filter in org.apache.ivy.util.filter
Classes in org.apache.ivy.util.filter that implement Filter Modifier and Type Class Description class
AndFilter<T>
class
ArtifactTypeFilter
class
NoFilter<T>
class
NotFilter<T>
class
OrFilter<T>
Fields in org.apache.ivy.util.filter declared as Filter Modifier and Type Field Description static Filter
NoFilter. INSTANCE
static Filter<Artifact>
FilterHelper. NO_FILTER
private Filter<T>
NotFilter. op
private Filter<T>
AndFilter. op1
private Filter<T>
OrFilter. op1
private Filter<T>
AndFilter. op2
private Filter<T>
OrFilter. op2
Methods in org.apache.ivy.util.filter that return Filter Modifier and Type Method Description static Filter<Artifact>
FilterHelper. getArtifactTypeFilter(java.lang.String types)
static Filter<Artifact>
FilterHelper. getArtifactTypeFilter(java.lang.String[] types)
Filter<T>
NotFilter. getOp()
Filter<T>
AndFilter. getOp1()
Filter<T>
OrFilter. getOp1()
Filter<T>
AndFilter. getOp2()
Filter<T>
OrFilter. getOp2()
static <T> Filter<T>
NoFilter. instance()
Methods in org.apache.ivy.util.filter with parameters of type Filter Modifier and Type Method Description static <T> java.util.Collection<T>
FilterHelper. filter(java.util.Collection<T> col, Filter<T> filter)
Constructors in org.apache.ivy.util.filter with parameters of type Filter Constructor Description AndFilter(Filter<T> op1, Filter<T> op2)
NotFilter(Filter<T> op)
OrFilter(Filter<T> op1, Filter<T> op2)
-