Package de.adorsys.ledgers.sca.domain
Enum ScaStatusBO
- java.lang.Object
-
- java.lang.Enum<ScaStatusBO>
-
- de.adorsys.ledgers.sca.domain.ScaStatusBO
-
- All Implemented Interfaces:
Serializable,Comparable<ScaStatusBO>
public enum ScaStatusBO extends Enum<ScaStatusBO>
The status of the sca process...- Author:
- fpo
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXEMPTEDFAILEDFINALISEDPSUAUTHENTICATEDPSUIDENTIFIEDRECEIVEDSCAMETHODSELECTEDSTARTEDUNCONFIRMED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ScaStatusBOvalueOf(String name)Returns the enum constant of this type with the specified name.static ScaStatusBO[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RECEIVED
public static final ScaStatusBO RECEIVED
-
PSUIDENTIFIED
public static final ScaStatusBO PSUIDENTIFIED
-
PSUAUTHENTICATED
public static final ScaStatusBO PSUAUTHENTICATED
-
SCAMETHODSELECTED
public static final ScaStatusBO SCAMETHODSELECTED
-
STARTED
public static final ScaStatusBO STARTED
-
FINALISED
public static final ScaStatusBO FINALISED
-
FAILED
public static final ScaStatusBO FAILED
-
EXEMPTED
public static final ScaStatusBO EXEMPTED
-
UNCONFIRMED
public static final ScaStatusBO UNCONFIRMED
-
-
Method Detail
-
values
public static ScaStatusBO[] 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 (ScaStatusBO c : ScaStatusBO.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ScaStatusBO 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
-
-