public enum AccountReferenceType extends Enum<AccountReferenceType>
| Enum Constant and Description |
|---|
BBAN |
IBAN |
MASKED_PAN |
MSISDN |
PAN |
| Modifier and Type | Method and Description |
|---|---|
static Optional<AccountReferenceType> |
getByValue(String name) |
String |
getFieldValue(AccountReference accountReference) |
int |
getOrder() |
String |
getValue() |
void |
setFieldValue(AccountReference accountReference,
String fieldValue) |
static AccountReferenceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountReferenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountReferenceType IBAN
public static final AccountReferenceType BBAN
public static final AccountReferenceType PAN
public static final AccountReferenceType MSISDN
public static final AccountReferenceType MASKED_PAN
public static AccountReferenceType[] values()
for (AccountReferenceType c : AccountReferenceType.values()) System.out.println(c);
public static AccountReferenceType 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 int getOrder()
public static Optional<AccountReferenceType> getByValue(String name)
public String getFieldValue(AccountReference accountReference)
public void setFieldValue(AccountReference accountReference, String fieldValue)
Copyright © 2020. All rights reserved.