Class Entry<K,​V>


  • class Entry<K,​V>
    extends java.lang.Object
    Used by ClassCacheImpl to store entries in the cache.

    $Id$

    • Field Detail

      • key

        private final K key
      • value

        private V value
    • Constructor Detail

      • Entry

        public Entry​(K key,
                     V value)
    • Method Detail

      • getKey

        public K getKey()
      • getValue

        public V getValue()
      • setValue

        public void setValue​(V value)
      • getNext

        public Entry<K,​V> getNext()
      • setNext

        public void setNext​(Entry<K,​V> next)
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object