android.os.Parcelable 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;
public interface Parcelable {
int CONTENTS_FILE_DESCRIPTOR = 1;
int PARCELABLE_WRITE_RETURN_VALUE = 1;
int describeContents();
void writeToParcel(Parcel var1, int var2);
public interface ClassLoaderCreator extends Parcelable.Creator {
T createFromParcel(Parcel var1, ClassLoader var2);
}
public interface Creator {
T createFromParcel(Parcel var1);
T[] newArray(int var1);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy