FileDocCategorySizeDatePackage
BaseBundle.javaAPI DocAndroid 5.1 API3256Sat Mar 14 14:09:34 GMT 2015android.os

BaseBundle.java

package android.os;
public class BaseBundle
{
BaseBundle() { throw new RuntimeException("Stub!"); }
public  int size() { throw new RuntimeException("Stub!"); }
public  boolean isEmpty() { throw new RuntimeException("Stub!"); }
public  void clear() { throw new RuntimeException("Stub!"); }
public  boolean containsKey(java.lang.String key) { throw new RuntimeException("Stub!"); }
public  java.lang.Object get(java.lang.String key) { throw new RuntimeException("Stub!"); }
public  void remove(java.lang.String key) { throw new RuntimeException("Stub!"); }
public  void putAll(android.os.PersistableBundle bundle) { throw new RuntimeException("Stub!"); }
public  java.util.Set<java.lang.String> keySet() { throw new RuntimeException("Stub!"); }
public  void putBoolean(java.lang.String key, boolean value) { throw new RuntimeException("Stub!"); }
public  void putInt(java.lang.String key, int value) { throw new RuntimeException("Stub!"); }
public  void putLong(java.lang.String key, long value) { throw new RuntimeException("Stub!"); }
public  void putDouble(java.lang.String key, double value) { throw new RuntimeException("Stub!"); }
public  void putString(java.lang.String key, java.lang.String value) { throw new RuntimeException("Stub!"); }
public  void putBooleanArray(java.lang.String key, boolean[] value) { throw new RuntimeException("Stub!"); }
public  void putIntArray(java.lang.String key, int[] value) { throw new RuntimeException("Stub!"); }
public  void putLongArray(java.lang.String key, long[] value) { throw new RuntimeException("Stub!"); }
public  void putDoubleArray(java.lang.String key, double[] value) { throw new RuntimeException("Stub!"); }
public  void putStringArray(java.lang.String key, java.lang.String[] value) { throw new RuntimeException("Stub!"); }
public  boolean getBoolean(java.lang.String key) { throw new RuntimeException("Stub!"); }
public  boolean getBoolean(java.lang.String key, boolean defaultValue) { throw new RuntimeException("Stub!"); }
public  int getInt(java.lang.String key) { throw new RuntimeException("Stub!"); }
public  int getInt(java.lang.String key, int defaultValue) { throw new RuntimeException("Stub!"); }
public  long getLong(java.lang.String key) { throw new RuntimeException("Stub!"); }
public  long getLong(java.lang.String key, long defaultValue) { throw new RuntimeException("Stub!"); }
public  double getDouble(java.lang.String key) { throw new RuntimeException("Stub!"); }
public  double getDouble(java.lang.String key, double defaultValue) { throw new RuntimeException("Stub!"); }
public  java.lang.String getString(java.lang.String key) { throw new RuntimeException("Stub!"); }
public  java.lang.String getString(java.lang.String key, java.lang.String defaultValue) { throw new RuntimeException("Stub!"); }
public  boolean[] getBooleanArray(java.lang.String key) { throw new RuntimeException("Stub!"); }
public  int[] getIntArray(java.lang.String key) { throw new RuntimeException("Stub!"); }
public  long[] getLongArray(java.lang.String key) { throw new RuntimeException("Stub!"); }
public  double[] getDoubleArray(java.lang.String key) { throw new RuntimeException("Stub!"); }
public  java.lang.String[] getStringArray(java.lang.String key) { throw new RuntimeException("Stub!"); }
}