MCPcopy Create free account
hub / github.com/CyanogenMod/android_frameworks_base / clone

Method clone

core/java/android/os/Bundle.java:209–212  ·  view source on GitHub ↗

Clones the current Bundle. The internal map is cloned, but the keys and values to which it refers are copied by reference.

()

Source from the content-addressed store, hash-verified

207 * values to which it refers are copied by reference.
208 */
209 @Override
210 public Object clone() {
211 return new Bundle(this);
212 }
213
214 /**
215 * If the underlying data are stored as a Parcel, unparcel them

Calls

no outgoing calls