public enum AuthorisationType extends Enum<AuthorisationType>
| Enum Constant and Description |
|---|
AIS |
PIS_CANCELLATION |
PIS_CREATION |
| Modifier and Type | Method and Description |
|---|---|
static AuthorisationType |
fromValue(String text)
Maps textual representation to AuthorisationType enum-value.
|
static AuthorisationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthorisationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthorisationType AIS
public static final AuthorisationType PIS_CREATION
public static final AuthorisationType PIS_CANCELLATION
public static AuthorisationType[] values()
for (AuthorisationType c : AuthorisationType.values()) System.out.println(c);
public static AuthorisationType 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 static AuthorisationType fromValue(String text)
text - - text to be mapped.Copyright © 2020. All rights reserved.