public enum DisputeStatus extends java.lang.Enum<DisputeStatus>
| Enum Constant and Description |
|---|
CHARGEBACK_NEW |
CHARGEBACK_PREVENTED |
CHARGEBACK_REPRESENTED_SUCCESSFULLY |
CHARGEBACK_REPRESENTED_UNSUCCESSFULLY |
CHARGEBACK_RESPONSE_UNDER_REVIEW |
RETRIEVAL_REQUEST_NEW |
RETRIEVAL_REQUEST_REPRESENTED |
RETRIEVAL_REQUEST_RESPONSE_UNDER_REVIEW |
UNRECOGNIZED
Used when received value can't be mapped to this enumeration.
|
| Modifier and Type | Method and Description |
|---|---|
static DisputeStatus |
fromValue(java.lang.String value) |
java.lang.String |
getValue() |
static DisputeStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisputeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisputeStatus RETRIEVAL_REQUEST_NEW
public static final DisputeStatus RETRIEVAL_REQUEST_RESPONSE_UNDER_REVIEW
public static final DisputeStatus RETRIEVAL_REQUEST_REPRESENTED
public static final DisputeStatus CHARGEBACK_NEW
public static final DisputeStatus CHARGEBACK_RESPONSE_UNDER_REVIEW
public static final DisputeStatus CHARGEBACK_REPRESENTED_SUCCESSFULLY
public static final DisputeStatus CHARGEBACK_REPRESENTED_UNSUCCESSFULLY
public static final DisputeStatus CHARGEBACK_PREVENTED
public static final DisputeStatus UNRECOGNIZED
public static DisputeStatus[] values()
for (DisputeStatus c : DisputeStatus.values()) System.out.println(c);
public static DisputeStatus 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 DisputeStatus fromValue(java.lang.String value)
public java.lang.String getValue()