Package net.sf.basedb.util.filter
Class AllOfFilter<T>
- java.lang.Object
-
- net.sf.basedb.util.filter.AllOfFilter<T>
-
-
Field Summary
Fields Modifier and Type Field Description private Collection<? extends Filter<? super T>>
parents
-
Constructor Summary
Constructors Constructor Description AllOfFilter(Collection<? extends Filter<? super T>> parents)
Create a new filter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
evaluate(T object)
Evaluate if the given object should pass the filter or not.
-
-
-
Field Detail
-
parents
private final Collection<? extends Filter<? super T>> parents
-
-
Constructor Detail
-
AllOfFilter
public AllOfFilter(Collection<? extends Filter<? super T>> parents)
Create a new filter.- Parameters:
parents
- The parent filters
-
-