Esempio n. 1
0
 /**
  * Retrieves an entry from the cache.<br>
  * The retrieved entry becomes the MRU (most recently used) entry.
  *
  * @param key the key whose associated value is to be returned.
  * @return the value associated to this key, or null if no value with this key exists in the
  *     cache.
  */
 public synchronized V get(K key) {
   return map.get(key);
 }