public enum DisputeReason extends java.lang.Enum<DisputeReason>
| Enum Constant and Description |
|---|
CREDIT_NOT_PROCESSED |
DUPLICATE |
FRAUDULENT |
GENERAL |
PRODUCT_NOT_RECEIVED |
PRODUCT_UNACCEPTABLE |
SUBSCRIPTION_CANCELED |
UNKNOWN
Used when received value can't be mapped to this enumeration.
|
UNRECOGNIZED |
| Modifier and Type | Method and Description |
|---|---|
static DisputeReason |
fromValue(java.lang.String value) |
java.lang.String |
getValue() |
static DisputeReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisputeReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisputeReason FRAUDULENT
public static final DisputeReason UNRECOGNIZED
public static final DisputeReason DUPLICATE
public static final DisputeReason SUBSCRIPTION_CANCELED
public static final DisputeReason PRODUCT_NOT_RECEIVED
public static final DisputeReason PRODUCT_UNACCEPTABLE
public static final DisputeReason CREDIT_NOT_PROCESSED
public static final DisputeReason GENERAL
public static final DisputeReason UNKNOWN
public static DisputeReason[] values()
for (DisputeReason c : DisputeReason.values()) System.out.println(c);
public static DisputeReason valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static DisputeReason fromValue(java.lang.String value)
public java.lang.String getValue()