public final class DependencyFilterUtils extends Object
| Modifier and Type | Method and Description |
|---|---|
static DependencyFilter |
andFilter(Collection<DependencyFilter> filters)
Creates a new filter that combines the specified filters using a logical
AND. |
static DependencyFilter |
andFilter(DependencyFilter... filters)
Creates a new filter that combines the specified filters using a logical
AND. |
static DependencyFilter |
classpathFilter(Collection<String> classpathTypes)
Creates a new filter that selects dependencies whose scope matches one or more of the specified classpath types.
|
static DependencyFilter |
classpathFilter(String... classpathTypes)
Creates a new filter that selects dependencies whose scope matches one or more of the specified classpath types.
|
static DependencyFilter |
notFilter(DependencyFilter filter)
Creates a new filter that negates the specified filter.
|
static DependencyFilter |
orFilter(Collection<DependencyFilter> filters)
Creates a new filter that combines the specified filters using a logical
OR. |
static DependencyFilter |
orFilter(DependencyFilter... filters)
Creates a new filter that combines the specified filters using a logical
OR. |
public static DependencyFilter notFilter(DependencyFilter filter)
filter - The filter to negate, must not be null.null.public static DependencyFilter andFilter(DependencyFilter... filters)
AND. If no filters are
specified, the resulting filter accepts everything.filters - The filters to combine, may be null.null.public static DependencyFilter andFilter(Collection<DependencyFilter> filters)
AND. If no filters are
specified, the resulting filter accepts everything.filters - The filters to combine, may be null.null.public static DependencyFilter orFilter(DependencyFilter... filters)
OR. If no filters are specified,
the resulting filter accepts nothing.filters - The filters to combine, may be null.null.public static DependencyFilter orFilter(Collection<DependencyFilter> filters)
OR. If no filters are specified,
the resulting filter accepts nothing.filters - The filters to combine, may be null.null.public static DependencyFilter classpathFilter(String... classpathTypes)
',' or '+'.classpathTypes - The classpath types, may be null or empty to match no dependency.null.JavaScopespublic static DependencyFilter classpathFilter(Collection<String> classpathTypes)
',' or '+'.classpathTypes - The classpath types, may be null or empty to match no dependency.null.JavaScopesCopyright © 2010-2014 The Eclipse Foundation. All Rights Reserved.