public static enum BankingTransaction.Type extends Enum<BankingTransaction.Type>
| Enum Constant and Description |
|---|
DIRECT_DEBIT |
FEE |
INTEREST_CHARGED |
INTEREST_PAID |
OTHER |
PAYMENT |
TRANSFER_INCOMING |
TRANSFER_OUTGOING |
| Modifier and Type | Method and Description |
|---|---|
static BankingTransaction.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BankingTransaction.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BankingTransaction.Type FEE
public static final BankingTransaction.Type INTEREST_CHARGED
public static final BankingTransaction.Type INTEREST_PAID
public static final BankingTransaction.Type TRANSFER_OUTGOING
public static final BankingTransaction.Type TRANSFER_INCOMING
public static final BankingTransaction.Type PAYMENT
public static final BankingTransaction.Type DIRECT_DEBIT
public static final BankingTransaction.Type OTHER
public static BankingTransaction.Type[] values()
for (BankingTransaction.Type c : BankingTransaction.Type.values()) System.out.println(c);
public static BankingTransaction.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.