public enum PayOutPaymentType extends java.lang.Enum<PayOutPaymentType>
| Enum Constant and Description |
|---|
AMAZON_GIFTCARD
AMAZON GIFTCARD payment type.
|
BANK_WIRE
BANK WIRE payment type.
|
MERCHANT_EXPENSE
MERCHANT EXPENSE payment type.
|
NotSpecified
Not specified.
|
| Modifier and Type | Method and Description |
|---|---|
static PayOutPaymentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PayOutPaymentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PayOutPaymentType NotSpecified
public static final PayOutPaymentType BANK_WIRE
public static final PayOutPaymentType MERCHANT_EXPENSE
public static final PayOutPaymentType AMAZON_GIFTCARD
public static PayOutPaymentType[] values()
for (PayOutPaymentType c : PayOutPaymentType.values()) System.out.println(c);
public static PayOutPaymentType 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