public enum TransactType extends Enum<TransactType>
| Enum Constant and Description |
|---|
CREDIT |
DEPOSIT |
ETF |
EXCHANGE |
FEE_DEDUCTION |
INTEREST |
LIQUIDATION |
OTHER_TYPES |
TRADE |
TRANSACT_FEE |
TRANSFER |
WITHDRAW |
WITHDRAW_FEE |
| Modifier and Type | Method and Description |
|---|---|
static TransactType |
find(String code) |
String |
getCode() |
static TransactType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactType TRADE
public static final TransactType ETF
public static final TransactType TRANSACT_FEE
public static final TransactType FEE_DEDUCTION
public static final TransactType TRANSFER
public static final TransactType CREDIT
public static final TransactType LIQUIDATION
public static final TransactType INTEREST
public static final TransactType DEPOSIT
public static final TransactType WITHDRAW
public static final TransactType WITHDRAW_FEE
public static final TransactType EXCHANGE
public static final TransactType OTHER_TYPES
public static TransactType[] values()
for (TransactType c : TransactType.values()) System.out.println(c);
public static TransactType 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 nullpublic String getCode()
public static TransactType find(String code)
Copyright © 2021. All rights reserved.