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 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 otherwhise.