Uses of Interface
org.fusesource.common.util.Filter

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
<T> Filter<T>
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
<T> Filter<T>
Filters.falseFilter()
           
static
<T> Filter<T>
Filters.not(Filter<T> filter)
           
static
<T> Filter<T>
Filters.or(Filter<T>... filters)
           
static
<T> Filter<T>
Filters.trueFilter()
           
 

Methods in org.fusesource.common.util with parameters of type Filter
static
<T> boolean
Filters.isEmpty(Filter<T> filter)
           
static
<T> Filter<T>
Filters.not(Filter<T> filter)
           
static
<T> Filter<T>
Filters.or(Filter<T>... filters)
           
 

Method parameters in org.fusesource.common.util with type arguments of type Filter
static
<T> Filter<T>
Filters.compositeFilter(java.util.List<Filter<T>> filters)
           
static
<T> boolean
Filters.matches(T value, java.util.List<? extends Filter<T>> filters)
          Returns true if any of the filters matches the given value
static
<T> boolean
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
<T> boolean
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)
           
 



Copyright © 2014 Red Hat. All Rights Reserved.