Interface Predicate<I>

  • Type Parameters:
    I - the type of the input values
    All Superinterfaces:
    Function<java.util.List<I>,java.lang.Boolean>
    All Known Implementing Classes:
    Selection.DropNaPredicate


    public interface Predicate<I>
    extends Function<java.util.List<I>,java.lang.Boolean>
    An interface used to filter a data frame.

    Implementors define Function.apply(Object) to return true for rows that should be included in the filtered data frame.

    See Also:
    DataFrame#select(Predicate)
    • Method Summary

      • Methods inherited from interface org.meteoinfo.data.dataframe.impl.Function

        apply