public enum AccountIdentifierTypeBO extends Enum<AccountIdentifierTypeBO>
| Enum Constant and Description |
|---|
ACCOUNT_ID |
IBAN |
| Modifier and Type | Method and Description |
|---|---|
abstract List<AdditionalAccountInfoBO> |
getAdditionalAccountInfo(String accountId,
Function<String,List<UserBO>> usersByIban,
Function<String,List<UserBO>> usersByAccountId) |
static AccountIdentifierTypeBO |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountIdentifierTypeBO[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountIdentifierTypeBO ACCOUNT_ID
public static final AccountIdentifierTypeBO IBAN
public static AccountIdentifierTypeBO[] values()
for (AccountIdentifierTypeBO c : AccountIdentifierTypeBO.values()) System.out.println(c);
public static AccountIdentifierTypeBO 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.