android.os.PersistableBundle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of remote-pay-java-connector Show documentation
Show all versions of remote-pay-java-connector Show documentation
Clover Connector Java library
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