All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.util.LruCache Maven / Gradle / Ivy

Go to download

provide android hidden api definition ,helper for android super framework development

There is a newer version: 1.11
Show newest version
package android.util;
public class LruCache
{
public  LruCache(int maxSize) { throw new RuntimeException("Stub!"); }
public final  V get(K key) { throw new RuntimeException("Stub!"); }
public final  V put(K key, V value) { throw new RuntimeException("Stub!"); }
public final  V remove(K key) { throw new RuntimeException("Stub!"); }
protected  void entryRemoved(boolean evicted, K key, V oldValue, V newValue) { throw new RuntimeException("Stub!"); }
protected  V create(K key) { throw new RuntimeException("Stub!"); }
protected  int sizeOf(K key, V value) { throw new RuntimeException("Stub!"); }
public final  void evictAll() { throw new RuntimeException("Stub!"); }
public final synchronized  int size() { throw new RuntimeException("Stub!"); }
public final synchronized  int maxSize() { throw new RuntimeException("Stub!"); }
public final synchronized  int hitCount() { throw new RuntimeException("Stub!"); }
public final synchronized  int missCount() { throw new RuntimeException("Stub!"); }
public final synchronized  int createCount() { throw new RuntimeException("Stub!"); }
public final synchronized  int putCount() { throw new RuntimeException("Stub!"); }
public final synchronized  int evictionCount() { throw new RuntimeException("Stub!"); }
public final synchronized  java.util.Map snapshot() { throw new RuntimeException("Stub!"); }
public final synchronized  java.lang.String toString() { throw new RuntimeException("Stub!"); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy