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

/frameworks/base/core/java/android/os/
H A DPersistableBundle.java36 public final class PersistableBundle extends BaseBundle implements Cloneable, Parcelable, class in inherits:BaseBundle,Cloneable,Parcelable,XmlUtils.WriteMapCallback
39 public static final PersistableBundle EMPTY;
43 EMPTY = new PersistableBundle();
54 (value instanceof PersistableBundle) || (value == null) ||
59 * Constructs a new, empty PersistableBundle.
61 public PersistableBundle() { method in class:PersistableBundle
66 * Constructs a new, empty PersistableBundle sized to hold the given number of
67 * elements. The PersistableBundle will grow as needed.
69 * @param capacity the initial capacity of the PersistableBundle
71 public PersistableBundle(in method in class:PersistableBundle
81 public PersistableBundle(PersistableBundle b) { method in class:PersistableBundle
91 private PersistableBundle(ArrayMap<String, Object> map) { method in class:PersistableBundle
111 /* package */ PersistableBundle(Parcel parcelledData, int length) { method in class:PersistableBundle
[all...]

Completed in 175 milliseconds