Interface Cache<K,​V>

    • Method Detail

      • put

        V put​(K key,
              V val)
      • get

        V get​(K key)
      • remove

        V remove​(K key)
      • clear

        void clear()
      • computeIfAbsent

        default V computeIfAbsent​(K key,
                                  Function<? super K,​? extends V> mappingFunction)