public enum DisputeResolvedReason extends java.lang.Enum<DisputeResolvedReason>
| Enum Constant and Description |
|---|
ALREADY_REFUNDED |
NEGATIVE_AMOUNT |
RAPID_DISPUTE_RESOLUTION |
| Modifier and Type | Method and Description |
|---|---|
static DisputeResolvedReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisputeResolvedReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="rapid_dispute_resolution") public static final DisputeResolvedReason RAPID_DISPUTE_RESOLUTION
@SerializedName(value="negative_amount") public static final DisputeResolvedReason NEGATIVE_AMOUNT
@SerializedName(value="already_refunded") public static final DisputeResolvedReason ALREADY_REFUNDED
public static DisputeResolvedReason[] values()
for (DisputeResolvedReason c : DisputeResolvedReason.values()) System.out.println(c);
public static DisputeResolvedReason 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 null