package android.util;
public final class ArrayMap<K, V>
implements java.util.Map<K, V>
{
public ArrayMap() { throw new RuntimeException("Stub!"); }
public ArrayMap(int capacity) { throw new RuntimeException("Stub!"); }
public ArrayMap(android.util.ArrayMap map) { throw new RuntimeException("Stub!"); }
public void clear() { throw new RuntimeException("Stub!"); }
public void ensureCapacity(int minimumCapacity) { throw new RuntimeException("Stub!"); }
public boolean containsKey(java.lang.Object key) { throw new RuntimeException("Stub!"); }
public int indexOfKey(java.lang.Object key) { throw new RuntimeException("Stub!"); }
public boolean containsValue(java.lang.Object value) { throw new RuntimeException("Stub!"); }
public V get(java.lang.Object key) { throw new RuntimeException("Stub!"); }
public K keyAt(int index) { throw new RuntimeException("Stub!"); }
public V valueAt(int index) { throw new RuntimeException("Stub!"); }
public V setValueAt(int index, V value) { throw new RuntimeException("Stub!"); }
public boolean isEmpty() { throw new RuntimeException("Stub!"); }
public V put(K key, V value) { throw new RuntimeException("Stub!"); }
public void putAll(android.util.ArrayMap<? extends K, ? extends V> array) { throw new RuntimeException("Stub!"); }
public V remove(java.lang.Object key) { throw new RuntimeException("Stub!"); }
public V removeAt(int index) { throw new RuntimeException("Stub!"); }
public int size() { throw new RuntimeException("Stub!"); }
public boolean equals(java.lang.Object object) { throw new RuntimeException("Stub!"); }
public int hashCode() { throw new RuntimeException("Stub!"); }
public java.lang.String toString() { throw new RuntimeException("Stub!"); }
public boolean containsAll(java.util.Collection<?> collection) { throw new RuntimeException("Stub!"); }
public void putAll(java.util.Map<? extends K, ? extends V> map) { throw new RuntimeException("Stub!"); }
public boolean removeAll(java.util.Collection<?> collection) { throw new RuntimeException("Stub!"); }
public boolean retainAll(java.util.Collection<?> collection) { throw new RuntimeException("Stub!"); }
public java.util.Set<java.util.Map.Entry<K, V>> entrySet() { throw new RuntimeException("Stub!"); }
public java.util.Set<K> keySet() { throw new RuntimeException("Stub!"); }
public java.util.Collection<V> values() { throw new RuntimeException("Stub!"); }
}
|