public enum TransactionType extends java.lang.Enum<TransactionType>
| Enum Constant and Description |
|---|
CARD_VALIDATION
CARD_VALIDATION transaction type.
|
CONVERSION
CONVERSION transaction type.
|
NotSpecified
Not specified.
|
PAYIN
PAYIN transaction type.
|
PAYOUT
PAYOUT transaction type.
|
TRANSFER
TRANSFER transaction type.
|
| Modifier and Type | Method and Description |
|---|---|
static TransactionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionType NotSpecified
public static final TransactionType PAYIN
public static final TransactionType PAYOUT
public static final TransactionType TRANSFER
public static final TransactionType CONVERSION
public static final TransactionType CARD_VALIDATION
public static TransactionType[] values()
for (TransactionType c : TransactionType.values()) System.out.println(c);
public static TransactionType 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