fr.opensagres.xdocreport.core.cache
Interface ICacheStorage<K,V>

All Known Implementing Classes:
MapCacheStorage

public interface ICacheStorage<K,V>


Method Summary
 void clear()
           
 boolean containsKey(K key)
           
 V get(K key)
           
 void put(K key, V value)
           
 void remove(K key)
           
 Collection<V> values()
           
 

Method Detail

get

V get(K key)

put

void put(K key,
         V value)

remove

void remove(K key)

clear

void clear()

containsKey

boolean containsKey(K key)

values

Collection<V> values()


Copyright © 2013. All rights reserved.