Interface FilterMap.Filter<V>

  • Enclosing class:
    FilterMap<K,​V>

    public static interface FilterMap.Filter<V>
    Filters the given value (to evaluate when the value is retrieved).
    • Method Detail

      • filter

        V filter​(java.lang.Object key,
                 V value)
        Called to filter a value.
        Parameters:
        key - the key associated. Notice that this method is called each time Map.get() is called, even if the given key is not an instance of K.
        value - the value to filter (i.e., to evaluate)