public enum RefundReasonType extends java.lang.Enum<RefundReasonType>
| Enum Constant and Description |
|---|
BANKACCOUNT_HAS_BEEN_CLOSED
Closed bank account.
|
BANKACCOUNT_INCORRECT
Incorrect bank account.
|
INITIALIZED_BY_CLIENT
Initialized by client.
|
NotSpecified
Not specified.
|
OTHER
Other.
|
OWNER_DOT_NOT_MATCH_BANKACCOUNT
Owner-bank account mismatch.
|
WITHDRAWAL_IMPOSSIBLE_ON_SAVINGS_ACCOUNTS
Withdrawal impossible on savings accounts.
|
| Modifier and Type | Method and Description |
|---|---|
static RefundReasonType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RefundReasonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RefundReasonType NotSpecified
public static final RefundReasonType BANKACCOUNT_INCORRECT
public static final RefundReasonType BANKACCOUNT_HAS_BEEN_CLOSED
public static final RefundReasonType OWNER_DOT_NOT_MATCH_BANKACCOUNT
public static final RefundReasonType WITHDRAWAL_IMPOSSIBLE_ON_SAVINGS_ACCOUNTS
public static final RefundReasonType INITIALIZED_BY_CLIENT
public static final RefundReasonType OTHER
public static RefundReasonType[] values()
for (RefundReasonType c : RefundReasonType.values()) System.out.println(c);
public static RefundReasonType 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