Class AggregatedFilter<T>
- java.lang.Object
-
- jetbrains.buildServer.util.filters.AggregatedFilter<T>
-
- All Implemented Interfaces:
Filter<T>
public class AggregatedFilter<T> extends Object implements Filter<T>
Accepts only those data accepted by all the delegate filters. This filter will invoke filters in the same order as they specified in the constructor.- Author:
- Sergey.Anchipolevsky Date: 20.08.2007
-
-
Constructor Summary
Constructors Constructor Description AggregatedFilter()
AggregatedFilter(List<Filter<? super T>> delegates)
AggregatedFilter(Filter<? super T>... delegates)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
accept(T data)
Determines whether the given data satisfies implementation specific criteria.AggregatedFilter<T>
then(Filter<? super T> next)
String
toString()
-