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