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