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