public enum PayoutTransactionType extends java.lang.Enum<PayoutTransactionType>
| Enum Constant and Description |
|---|
ACQUIRER_FEE |
ADJUSTMENT |
CHARGE |
CHARGEBACK |
CHARGEBACK_REPRESENTED |
CREDIT |
REFUND |
RESERVE_RELEASE |
RESERVE_WITHHOLD |
UNRECOGNIZED
Used when received value can't be mapped to this enumeration.
|
| Modifier and Type | Method and Description |
|---|---|
static PayoutTransactionType |
fromValue(java.lang.String value) |
java.lang.String |
getValue() |
static PayoutTransactionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PayoutTransactionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PayoutTransactionType CHARGE
public static final PayoutTransactionType REFUND
public static final PayoutTransactionType CREDIT
public static final PayoutTransactionType CHARGEBACK
public static final PayoutTransactionType CHARGEBACK_REPRESENTED
public static final PayoutTransactionType ADJUSTMENT
public static final PayoutTransactionType RESERVE_WITHHOLD
public static final PayoutTransactionType RESERVE_RELEASE
public static final PayoutTransactionType ACQUIRER_FEE
public static final PayoutTransactionType UNRECOGNIZED
public static PayoutTransactionType[] values()
for (PayoutTransactionType c : PayoutTransactionType.values()) System.out.println(c);
public static PayoutTransactionType 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 PayoutTransactionType fromValue(java.lang.String value)
public java.lang.String getValue()