public enum CreditSourceOfFunds extends java.lang.Enum<CreditSourceOfFunds>
| Enum Constant and Description |
|---|
CASH |
CREDIT_ACCOUNT |
CREDIT_CARD |
DEBIT_CARD |
DEPOSIT_ACCOUNT |
MOBILE_MONEY_ACCOUNT |
PREPAID_CARD |
UNRECOGNIZED
Used when received value can't be mapped to this enumeration.
|
| Modifier and Type | Method and Description |
|---|---|
static CreditSourceOfFunds |
fromValue(java.lang.String value) |
java.lang.String |
getValue() |
static CreditSourceOfFunds |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CreditSourceOfFunds[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CreditSourceOfFunds DEBIT_CARD
public static final CreditSourceOfFunds CREDIT_CARD
public static final CreditSourceOfFunds PREPAID_CARD
public static final CreditSourceOfFunds CASH
public static final CreditSourceOfFunds DEPOSIT_ACCOUNT
public static final CreditSourceOfFunds CREDIT_ACCOUNT
public static final CreditSourceOfFunds MOBILE_MONEY_ACCOUNT
public static final CreditSourceOfFunds UNRECOGNIZED
public static CreditSourceOfFunds[] values()
for (CreditSourceOfFunds c : CreditSourceOfFunds.values()) System.out.println(c);
public static CreditSourceOfFunds 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 nullpublic static CreditSourceOfFunds fromValue(java.lang.String value)
public java.lang.String getValue()