public enum UserAccountReferenceType extends Enum<UserAccountReferenceType>
| Enum Constant and Description |
|---|
BBAN |
IBAN |
MASKED_PAN |
MSISDN |
PAN |
| Modifier and Type | Method and Description |
|---|---|
static UserAccountReferenceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserAccountReferenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserAccountReferenceType IBAN
public static final UserAccountReferenceType BBAN
public static final UserAccountReferenceType PAN
public static final UserAccountReferenceType MSISDN
public static final UserAccountReferenceType MASKED_PAN
public static UserAccountReferenceType[] values()
for (UserAccountReferenceType c : UserAccountReferenceType.values()) System.out.println(c);
public static UserAccountReferenceType 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.