Back to project page protohipster.
The source code is released under:
Apache License
If you think the Android project protohipster listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.flipper83.protohipster.globalutils.cache; //ww w . jav a 2 s .c o m import java.util.List; /** * This is a contract for all cache implementations */ public interface Cache<T> { T get(String key); void put(String key, T value); List<T> getAllValues(); }