public enum TransactionNature extends java.lang.Enum<TransactionNature>
| Enum Constant and Description |
|---|
CHARGEBACK
Chargeback of a given transfer
|
EXTERNAL_PAYMENT
A payment to an external user
|
IMPORT
An imported transaction
|
ORDER_PAYMENT
Payment generated by confirming a webshop order
|
PAYMENT
A direct payment
|
PAYMENT_REQUEST
A request for another user to accept a payment
|
RECURRING_PAYMENT
A payment which is processed recurrently
|
SCHEDULED_PAYMENT
A scheduled payment generated manually
|
| Modifier and Type | Method and Description |
|---|---|
static java.util.List<TransactionNature> |
getInverse() |
static TransactionNature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionNature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionNature PAYMENT
public static final TransactionNature ORDER_PAYMENT
public static final TransactionNature SCHEDULED_PAYMENT
public static final TransactionNature RECURRING_PAYMENT
public static final TransactionNature IMPORT
public static final TransactionNature CHARGEBACK
public static final TransactionNature PAYMENT_REQUEST
public static final TransactionNature EXTERNAL_PAYMENT
public static TransactionNature[] values()
for (TransactionNature c : TransactionNature.values()) System.out.println(c);
public static TransactionNature 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 java.util.List<TransactionNature> getInverse()