public enum BankTransactionCode extends Enum<BankTransactionCode>
| Enum Constant and Description |
|---|
CROSS_BORDER |
INSTANT_CROSS_BORDER |
INSTANT_SEPA |
SEPA |
SPECIFIC |
| Modifier and Type | Method and Description |
|---|---|
static String |
getByPaymentProduct(String paymentProduct) |
static Optional<BankTransactionCode> |
getByValue(String value) |
String |
getValue() |
static BankTransactionCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BankTransactionCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BankTransactionCode SEPA
public static final BankTransactionCode INSTANT_SEPA
public static final BankTransactionCode CROSS_BORDER
public static final BankTransactionCode INSTANT_CROSS_BORDER
public static final BankTransactionCode SPECIFIC
public static BankTransactionCode[] values()
for (BankTransactionCode c : BankTransactionCode.values()) System.out.println(c);
public static BankTransactionCode 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 static Optional<BankTransactionCode> getByValue(String value)
Copyright © 2020. All rights reserved.