| Package | Description |
|---|---|
| org.apache.xbean.finder | |
| org.apache.xbean.finder.archive | |
| org.apache.xbean.finder.filter |
| Modifier and Type | Method and Description |
|---|---|
UriSet |
UriSet.filter(Filter filter) |
UrlSet |
UrlSet.filter(Filter filter) |
| Modifier and Type | Field and Description |
|---|---|
private Filter |
FilteredArchive.filter |
| Constructor and Description |
|---|
FilteredArchive(Archive archive,
Filter filter) |
| Modifier and Type | Class and Description |
|---|---|
class |
ClassFilter |
class |
ContainsFilter |
class |
ExcludeIncludeFilter
First, all Exclude directives are evaluated; if any match, the className is denied unless it also matches an Include directive.
|
class |
FilterList |
private static class |
Filters.NegativeFilter |
class |
IncludeExcludeFilter
First, all Include directives are evaluated; at least one must match, or the className is rejected.
|
class |
PackageFilter |
class |
PatternFilter |
class |
PrefixFilter |
class |
SuffixFilter |
| Modifier and Type | Field and Description |
|---|---|
private Filter |
IncludeExcludeFilter.exclude |
private Filter |
ExcludeIncludeFilter.exclude |
private Filter |
Filters.NegativeFilter.filter |
private Filter |
IncludeExcludeFilter.include |
private Filter |
ExcludeIncludeFilter.include |
private static Filter |
Filters.NONE |
| Modifier and Type | Field and Description |
|---|---|
private java.util.List<Filter> |
FilterList.filters |
| Modifier and Type | Method and Description |
|---|---|
static Filter |
Filters.classes(java.lang.String... classes) |
Filter |
Filters.NegativeFilter.getFilter() |
static Filter |
Filters.invert(Filter filter)
Will invert the meaning of this filter by wrapping it with
a filter that negates the return of the accept method.
|
static Filter |
Filters.optimize(Filter... filters) |
static Filter |
Filters.optimize(java.util.List<Filter>... filterss) |
static Filter |
Filters.packages(java.lang.String... packages) |
static Filter |
Filters.patterns(java.lang.String... patterns) |
static Filter |
Filters.prefixes(java.lang.String... prefixes) |
static Filter |
Filters.suffixes(java.lang.String... suffixes) |
static Filter |
Filters.tokens(java.lang.String... tokens) |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<Filter> |
FilterList.getFilters() |
| Modifier and Type | Method and Description |
|---|---|
static Filter |
Filters.invert(Filter filter)
Will invert the meaning of this filter by wrapping it with
a filter that negates the return of the accept method.
|
static Filter |
Filters.optimize(Filter... filters) |
| Modifier and Type | Method and Description |
|---|---|
private static void |
Filters.unwrap(java.util.List<Filter> filters,
java.util.Set<Filter> unwrapped) |
private static void |
Filters.unwrap(java.util.List<Filter> filters,
java.util.Set<Filter> unwrapped) |
| Constructor and Description |
|---|
ExcludeIncludeFilter(Filter include,
Filter exclude) |
FilterList(Filter... filters) |
IncludeExcludeFilter(Filter include,
Filter exclude) |
NegativeFilter(Filter filter) |
| Constructor and Description |
|---|
FilterList(java.lang.Iterable<Filter> filters) |