public enum TransactionCode extends Enum<TransactionCode>
Modifier and Type | Class and Description |
---|---|
static class |
TransactionCode.Adapter |
Enum Constant and Description |
---|
ADJUSTMENT |
ATM |
BANK_CHARGE |
BILL_PAYMENT |
CASH |
CASHBACK |
CHEQUE |
DIRECT_DEBIT |
ENUM_UNKNOWN |
INTEREST |
NULL |
PURCHASE |
STANDING_ORDER |
TRANSFER |
Modifier and Type | Method and Description |
---|---|
static TransactionCode |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static TransactionCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionCode ADJUSTMENT
public static final TransactionCode ATM
public static final TransactionCode BANK_CHARGE
public static final TransactionCode BILL_PAYMENT
public static final TransactionCode CASH
public static final TransactionCode CASHBACK
public static final TransactionCode CHEQUE
public static final TransactionCode DIRECT_DEBIT
public static final TransactionCode INTEREST
public static final TransactionCode PURCHASE
public static final TransactionCode STANDING_ORDER
public static final TransactionCode TRANSFER
public static final TransactionCode NULL
public static final TransactionCode ENUM_UNKNOWN
public static TransactionCode[] values()
for (TransactionCode c : TransactionCode.values()) System.out.println(c);
public static TransactionCode 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 getValue()
public String toString()
toString
in class Enum<TransactionCode>
public static TransactionCode fromValue(String value)
Copyright © 2017–2022 Plaid Inc.. All rights reserved.