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