public enum AVSResult extends Enum<AVSResult> implements Parcelable
Parcelable.ClassLoaderCreator<T>, Parcelable.Creator<T>
Modifier and Type | Field and Description |
---|---|
static Parcelable.Creator<AVSResult> |
CREATOR |
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
Modifier and Type | Method and Description |
---|---|
int |
describeContents() |
static AVSResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AVSResult[] |
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 AVSResult SUCCESS
public static final AVSResult ZIP_CODE_MATCH
public static final AVSResult ZIP_CODE_MATCH_ADDRESS_NOT_CHECKED
public static final AVSResult ADDRESS_MATCH
public static final AVSResult ADDRESS_MATCH_ZIP_NOT_CHECKED
public static final AVSResult NEITHER_MATCH
public static final AVSResult SERVICE_FAILURE
public static final AVSResult SERVICE_UNAVAILABLE
public static final AVSResult NOT_CHECKED
public static final AVSResult ZIP_CODE_NOT_MATCHED_ADDRESS_NOT_CHECKED
public static final AVSResult ADDRESS_NOT_MATCHED_ZIP_CODE_NOT_CHECKED
public static final Parcelable.Creator<AVSResult> CREATOR
public static AVSResult[] values()
for (AVSResult c : AVSResult.values()) System.out.println(c);
public static AVSResult 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