FileDocCategorySizeDatePackage
SparseLongArray.javaAPI DocAndroid 5.1 API1284Sat Mar 14 14:09:42 GMT 2015android.util

SparseLongArray.java

package android.util;
public class SparseLongArray
  implements java.lang.Cloneable
{
public  SparseLongArray() { throw new RuntimeException("Stub!"); }
public  SparseLongArray(int initialCapacity) { throw new RuntimeException("Stub!"); }
public  android.util.SparseLongArray clone() { throw new RuntimeException("Stub!"); }
public  long get(int key) { throw new RuntimeException("Stub!"); }
public  long get(int key, long valueIfKeyNotFound) { throw new RuntimeException("Stub!"); }
public  void delete(int key) { throw new RuntimeException("Stub!"); }
public  void removeAt(int index) { throw new RuntimeException("Stub!"); }
public  void put(int key, long value) { throw new RuntimeException("Stub!"); }
public  int size() { throw new RuntimeException("Stub!"); }
public  int keyAt(int index) { throw new RuntimeException("Stub!"); }
public  long valueAt(int index) { throw new RuntimeException("Stub!"); }
public  int indexOfKey(int key) { throw new RuntimeException("Stub!"); }
public  int indexOfValue(long value) { throw new RuntimeException("Stub!"); }
public  void clear() { throw new RuntimeException("Stub!"); }
public  void append(int key, long value) { throw new RuntimeException("Stub!"); }
public  java.lang.String toString() { throw new RuntimeException("Stub!"); }
}