android.util.LruCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
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!"); }
}