Package net.sourceforge.pmd.util
Interface SearchFunction<E>
-
- All Known Implementing Classes:
ImageFinderFunction
@Deprecated public interface SearchFunction<E>
Deprecated.Will be replaced with standard java.util.function.Predicate with 7.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
applyTo(E o)
Deprecated.Applies the search function over a single element.
-
-
-
Method Detail
-
applyTo
boolean applyTo(E o)
Deprecated.Applies the search function over a single element.- Parameters:
o
- The element to analyze.- Returns:
- True if the search should continue, false otherwise.
-
-