public enum SourceOfFunds extends java.lang.Enum<SourceOfFunds>
| Enum Constant and Description |
|---|
CASH |
CREDIT |
DEBIT |
DEPOSIT_ACCOUNT |
MOBILE_MONEY_ACCOUNT |
PREPAID |
| Modifier and Type | Method and Description |
|---|---|
static SourceOfFunds |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SourceOfFunds[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="credit") public static final SourceOfFunds CREDIT
@SerializedName(value="debit") public static final SourceOfFunds DEBIT
@SerializedName(value="prepaid") public static final SourceOfFunds PREPAID
@SerializedName(value="deposit_account") public static final SourceOfFunds DEPOSIT_ACCOUNT
@SerializedName(value="mobile_money_account") public static final SourceOfFunds MOBILE_MONEY_ACCOUNT
@SerializedName(value="cash") public static final SourceOfFunds CASH
public static SourceOfFunds[] values()
for (SourceOfFunds c : SourceOfFunds.values()) System.out.println(c);
public static SourceOfFunds 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