Package de.adorsys.psd2.model
Enum MessageCode400LTB
- java.lang.Object
-
- java.lang.Enum<MessageCode400LTB>
-
- de.adorsys.psd2.model.MessageCode400LTB
-
- All Implemented Interfaces:
Serializable,Comparable<MessageCode400LTB>
public enum MessageCode400LTB extends Enum<MessageCode400LTB>
Message codes defined for Trusted Beneficiaries for HTTP Error code 400 (BAD_REQUEST).
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MessageCode400LTBfromValue(String text)StringtoString()static MessageCode400LTBvalueOf(String name)Returns the enum constant of this type with the specified name.static MessageCode400LTB[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FORMAT_ERROR
public static final MessageCode400LTB FORMAT_ERROR
-
PARAMETER_NOT_CONSISTENT
public static final MessageCode400LTB PARAMETER_NOT_CONSISTENT
-
PARAMETER_NOT_SUPPORTED
public static final MessageCode400LTB PARAMETER_NOT_SUPPORTED
-
SERVICE_INVALID
public static final MessageCode400LTB SERVICE_INVALID
-
RESOURCE_UNKNOWN
public static final MessageCode400LTB RESOURCE_UNKNOWN
-
RESOURCE_EXPIRED
public static final MessageCode400LTB RESOURCE_EXPIRED
-
RESOURCE_BLOCKED
public static final MessageCode400LTB RESOURCE_BLOCKED
-
TIMESTAMP_INVALID
public static final MessageCode400LTB TIMESTAMP_INVALID
-
PERIOD_INVALID
public static final MessageCode400LTB PERIOD_INVALID
-
SCA_METHOD_UNKNOWN
public static final MessageCode400LTB SCA_METHOD_UNKNOWN
-
SCA_INVALID
public static final MessageCode400LTB SCA_INVALID
-
CONSENT_UNKNOWN
public static final MessageCode400LTB CONSENT_UNKNOWN
-
SESSIONS_NOT_SUPPORTED
public static final MessageCode400LTB SESSIONS_NOT_SUPPORTED
-
-
Method Detail
-
values
public static MessageCode400LTB[] 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 (MessageCode400LTB c : MessageCode400LTB.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MessageCode400LTB valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<MessageCode400LTB>
-
fromValue
public static MessageCode400LTB fromValue(String text)
-
-