Interface Predicate<K,​V>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean test​(K key, V value)
      Test if the record with the given key and value satisfies the predicate.
    • Method Detail

      • test

        boolean test​(K key,
                     V value)
        Test if the record with the given key and value satisfies the predicate.
        Parameters:
        key - the key of the record
        value - the value of the record
        Returns:
        true if the KeyValue pair satisfies the predicate—false otherwise