Class SoftCacheEntry<K,V>

java.lang.Object
org.apache.commons.jexl3.internal.SoftCacheEntry<K,V>
Type Parameters:
K - key type
V - value type
All Implemented Interfaces:
Map.Entry<K,V>

class SoftCacheEntry<K,V> extends Object implements Map.Entry<K,V>
A soft cache entry.
  • Field Details

    • key

      private final K key
      The entry key.
    • value

      private final V value
      The entry value.
  • Constructor Details

    • SoftCacheEntry

      SoftCacheEntry(Map.Entry<K,V> e)
      Creates an entry clone.
      Parameters:
      e - the entry to clone
  • Method Details