Searched defs:PersistableBundle (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/os/
H A DPersistableBundle.java35 public final class PersistableBundle extends BaseBundle implements Cloneable, Parcelable, class in inherits:BaseBundle,Cloneable,Parcelable,XmlUtils.WriteMapCallback
38 public static final PersistableBundle EMPTY;
42 EMPTY = new PersistableBundle();
48 * Constructs a new, empty PersistableBundle.
50 public PersistableBundle() { method in class:PersistableBundle
55 * Constructs a new, empty PersistableBundle sized to hold the given number of
56 * elements. The PersistableBundle will grow as needed.
58 * @param capacity the initial capacity of the PersistableBundle
60 public PersistableBundle(int capacity) { method in class:PersistableBundle
65 * Constructs a PersistableBundle containin
70 public PersistableBundle(PersistableBundle b) { method in class:PersistableBundle
80 private PersistableBundle(Map<String, Object> map) { method in class:PersistableBundle
107 /* package */ PersistableBundle(Parcel parcelledData, int length) { method in class:PersistableBundle
[all...]

Completed in 156 milliseconds