|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Uses of Filter in org.fusesource.common.util |
|---|
| Classes in org.fusesource.common.util that implement Filter | |
|---|---|
class |
CompositeFilter<T>
Represents a filter which ORs together a collection of filters, returning true if any of the filters are true |
| Methods in org.fusesource.common.util that return Filter | ||
|---|---|---|
static
|
Filters.compositeFilter(java.util.List<Filter<T>> filters)
|
|
static Filter<java.lang.String> |
Filters.createStringFilter(java.lang.String text)
Returns a String pattern matching filter using ! for not and * for any characters |
|
static
|
Filters.falseFilter()
|
|
static
|
Filters.not(Filter<T> filter)
|
|
static
|
Filters.or(Filter<T>... filters)
|
|
static
|
Filters.trueFilter()
|
|
| Methods in org.fusesource.common.util with parameters of type Filter | ||
|---|---|---|
static
|
Filters.isEmpty(Filter<T> filter)
|
|
static
|
Filters.not(Filter<T> filter)
|
|
static
|
Filters.or(Filter<T>... filters)
|
|
| Method parameters in org.fusesource.common.util with type arguments of type Filter | ||
|---|---|---|
static
|
Filters.compositeFilter(java.util.List<Filter<T>> filters)
|
|
static
|
Filters.matches(T value,
java.util.List<? extends Filter<T>> filters)
Returns true if any of the filters matches the given value |
|
static
|
Filters.matches(T value,
java.util.List<? extends Filter<T>> includeFilters,
java.util.List<? extends Filter<T>> excludeFilters)
Return true if the value matches an include filter if specified and does not match an exclude filter |
|
static
|
Filters.matches(T value,
java.util.List<? extends Filter<T>> includeFilters,
java.util.List<? extends Filter<T>> excludeFilters)
Return true if the value matches an include filter if specified and does not match an exclude filter |
|
| Constructor parameters in org.fusesource.common.util with type arguments of type Filter | |
|---|---|
CompositeFilter(java.util.Collection<Filter<T>> filters)
|
|
|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||