Class Entry<K,V>

java.lang.Object
org.apache.commons.ognl.internal.Entry<K,V>

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

$Id$

  • Field Details

    • next

      private Entry<K,V> next
    • key

      private final K key
    • value

      private V value
  • Constructor Details

    • Entry

      public Entry(K key, V value)
  • Method Details

    • 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 String toString()
      Overrides:
      toString in class Object