public enum DeveloperBillingStatus extends Enum<DeveloperBillingStatus> implements Parcelable
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<DeveloperBillingStatus> |
CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier and Type | Method and Description |
---|---|
int |
describeContents() |
static DeveloperBillingStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeveloperBillingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
void |
writeToParcel(Parcel dest,
int flags) |
public static final DeveloperBillingStatus PENDING
public static final DeveloperBillingStatus APPROVED
public static final DeveloperBillingStatus DECLINED
public static final DeveloperBillingStatus ERROR
public static final Parcelable.Creator<DeveloperBillingStatus> CREATOR
public static DeveloperBillingStatus[] values()
for (DeveloperBillingStatus c : DeveloperBillingStatus.values()) System.out.println(c);
public static DeveloperBillingStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int describeContents()
describeContents
in interface Parcelable
public void writeToParcel(Parcel dest, int flags)
writeToParcel
in interface Parcelable