public enum VasDataTypeType extends Enum<VasDataTypeType> implements Parcelable
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Enum Constant and Description |
---|
ALL |
CUSTOMER |
GIFT_CARD |
LOYALTY |
OFFER |
PRIVATE_LABEL_CARD |
VAS_DATA |
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<VasDataTypeType> |
CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier and Type | Method and Description |
---|---|
int |
describeContents() |
static VasDataTypeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VasDataTypeType[] |
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 VasDataTypeType ALL
public static final VasDataTypeType LOYALTY
public static final VasDataTypeType OFFER
public static final VasDataTypeType GIFT_CARD
public static final VasDataTypeType PRIVATE_LABEL_CARD
public static final VasDataTypeType CUSTOMER
public static final VasDataTypeType VAS_DATA
public static final Parcelable.Creator<VasDataTypeType> CREATOR
public static VasDataTypeType[] values()
for (VasDataTypeType c : VasDataTypeType.values()) System.out.println(c);
public static VasDataTypeType 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