All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.tablesaw.filtering.ShortBiPredicate Maven / Gradle / Ivy

package tech.tablesaw.filtering;

/**
 *
 */
public interface ShortBiPredicate {

    /**
     * Returns true if valueToTest meets the criteria of this predicate when valueToCompareAgainst is considered
     * 

* Example (to compare all the values v in a column such that v is greater than 4, v is the value to test and 4 is * the value to compare against * * @param valueToTest the value you're checking. Often this is the value of a cell in a short column * @param valueToCompareAgainst the value to compare against. Often this is a single value for all comparisions */ boolean test(short valueToTest, int valueToCompareAgainst); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy