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