public enum TransactionType extends java.lang.Enum<TransactionType>
| Enum Constant and Description |
|---|
ACCOUNT_FUNDING |
CHECK_ACCEPTANCE |
GOODS_SERVICE |
PREPAID_ACTIVATION_AND_LOAD |
QUASHI_CARD_TRANSACTION |
| 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.
|
@SerializedName(value="goods_service") public static final TransactionType GOODS_SERVICE
@SerializedName(value="check_acceptance") public static final TransactionType CHECK_ACCEPTANCE
@SerializedName(value="account_funding") public static final TransactionType ACCOUNT_FUNDING
@SerializedName(value="quashi_card_transaction") public static final TransactionType QUASHI_CARD_TRANSACTION
@SerializedName(value="prepaid_activation_and_load") public static final TransactionType PREPAID_ACTIVATION_AND_LOAD
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