public enum TransferNature extends java.lang.Enum<TransferNature>
| Enum Constant and Description |
|---|
ACCOUNT_FEE
A transfer generated by an account fee charge
|
CHARGEBACK
A transfer which is a chargeback of another transfer
|
IMPORT
An imported transfer
|
INITIAL_CREDIT
A transfer which is the initial credit for a newly created account
|
PAYMENT
A transfer generated by a direct payment or accepting a webshop order
|
RECURRING_PAYMENT
A transfer generated when processing a recurring payment
|
SCHEDULED_PAYMENT_INSTALLMENT
A transfer generated when processing a scheduled payment installment
|
TRANSFER_FEE
A transfer generated by a transfer fee charge
|
| Modifier and Type | Method and Description |
|---|---|
static TransferNature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransferNature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransferNature PAYMENT
public static final TransferNature SCHEDULED_PAYMENT_INSTALLMENT
public static final TransferNature RECURRING_PAYMENT
public static final TransferNature CHARGEBACK
public static final TransferNature INITIAL_CREDIT
public static final TransferNature TRANSFER_FEE
public static final TransferNature ACCOUNT_FEE
public static final TransferNature IMPORT
public static TransferNature[] values()
for (TransferNature c : TransferNature.values()) System.out.println(c);
public static TransferNature 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