Enum ConsentStatusTO
- java.lang.Object
-
- java.lang.Enum<ConsentStatusTO>
-
- de.adorsys.multibanking.web.model.ConsentStatusTO
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ConsentStatusTO>
public enum ConsentStatusTO extends java.lang.Enum<ConsentStatusTO>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXPIREDPARTIALLY_AUTHORISEDRECEIVEDREJECTEDREVOKEDBYPSUTERMINATED_BY_ASPSPTERMINATEDBYTPPVALID
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConsentStatusTOvalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
RECEIVED
public static final ConsentStatusTO RECEIVED
-
REJECTED
public static final ConsentStatusTO REJECTED
-
VALID
public static final ConsentStatusTO VALID
-
REVOKEDBYPSU
public static final ConsentStatusTO REVOKEDBYPSU
-
EXPIRED
public static final ConsentStatusTO EXPIRED
-
TERMINATEDBYTPP
public static final ConsentStatusTO TERMINATEDBYTPP
-
TERMINATED_BY_ASPSP
public static final ConsentStatusTO TERMINATED_BY_ASPSP
-
PARTIALLY_AUTHORISED
public static final ConsentStatusTO PARTIALLY_AUTHORISED
-
-
Method Detail
-
values
public static ConsentStatusTO[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ConsentStatusTO c : ConsentStatusTO.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConsentStatusTO valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-