public enum AccountReferenceType extends Enum<AccountReferenceType>
| Enum Constant and Description |
|---|
BBAN |
IBAN |
MASKED_PAN |
MSISDN |
PAN |
| Modifier and Type | Method and Description |
|---|---|
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 MASKED_PAN
public static final AccountReferenceType MSISDN
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 nullCopyright © 2019. All rights reserved.