Package net.sourceforge.pmd.util.filter
Interface Filter<T>
-
- Type Parameters:
T- The underlying type on which the filter applies.
- All Known Implementing Classes:
AbstractCompoundFilter,AbstractDelegateFilter,AndFilter,DirectoryFilter,FileExtensionFilter,NotFilter,OrFilter,RegexStringFilter
@Deprecated public interface Filter<T>
Deprecated.Will be replaced with standard java.util.function.Predicate with 7.0.0A Filter interface, used for filtering arbitrary objects.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleanfilter(T obj)Deprecated.
-
-
-
Method Detail
-
filter
boolean filter(T obj)
Deprecated.
-
-