public enum PaymentDestinationType extends java.lang.Enum<PaymentDestinationType>
| Enum Constant and Description |
|---|
BANK_ACCOUNT |
CARD |
ID |
TOKEN |
| Modifier and Type | Method and Description |
|---|---|
static PaymentDestinationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaymentDestinationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="card") public static final PaymentDestinationType CARD
@SerializedName(value="id") public static final PaymentDestinationType ID
@SerializedName(value="token") public static final PaymentDestinationType TOKEN
@SerializedName(value="bank_account") public static final PaymentDestinationType BANK_ACCOUNT
public static PaymentDestinationType[] values()
for (PaymentDestinationType c : PaymentDestinationType.values()) System.out.println(c);
public static PaymentDestinationType 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