Enum StepOperation
- java.lang.Object
-
- java.lang.Enum<StepOperation>
-
- de.adorsys.ledgers.middleware.api.domain.general.StepOperation
-
- All Implemented Interfaces:
Serializable,Comparable<StepOperation>
public enum StepOperation extends Enum<StepOperation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHORIZECONFIRM_AUTH_CODEGET_SCA_METHODSINITIATE_OPERATION_OBJECTINITIATIONSELECT_SCA_METHODSTART_SCA
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StepOperationvalueOf(String name)Returns the enum constant of this type with the specified name.static StepOperation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INITIATION
public static final StepOperation INITIATION
-
START_SCA
public static final StepOperation START_SCA
-
GET_SCA_METHODS
public static final StepOperation GET_SCA_METHODS
-
SELECT_SCA_METHOD
public static final StepOperation SELECT_SCA_METHOD
-
CONFIRM_AUTH_CODE
public static final StepOperation CONFIRM_AUTH_CODE
-
AUTHORIZE
public static final StepOperation AUTHORIZE
-
INITIATE_OPERATION_OBJECT
public static final StepOperation INITIATE_OPERATION_OBJECT
-
-
Method Detail
-
values
public static StepOperation[] 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 (StepOperation c : StepOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StepOperation 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
-
-