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

android.os.PersistableBundle Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
package android.os;

import android.os.BaseBundle;
import android.os.Parcel;
import android.os.Parcelable;
import android.os.Parcelable.Creator;

public final class PersistableBundle extends BaseBundle implements Cloneable, Parcelable {
  public static final Creator CREATOR = null;
  public static final PersistableBundle EMPTY = null;

  public PersistableBundle() {
    throw new RuntimeException("Stub!");
  }

  public PersistableBundle(int capacity) {
    throw new RuntimeException("Stub!");
  }

  public PersistableBundle(PersistableBundle b) {
    throw new RuntimeException("Stub!");
  }

  public Object clone() {
    throw new RuntimeException("Stub!");
  }

  public void putPersistableBundle(String key, PersistableBundle value) {
    throw new RuntimeException("Stub!");
  }

  public PersistableBundle getPersistableBundle(String key) {
    throw new RuntimeException("Stub!");
  }

  public int describeContents() {
    throw new RuntimeException("Stub!");
  }

  public void writeToParcel(Parcel parcel, int flags) {
    throw new RuntimeException("Stub!");
  }

  public synchronized String toString() {
    throw new RuntimeException("Stub!");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy