Package de.adorsys.ledgers.um.api.domain
Enum ScaMethodTypeBO
- java.lang.Object
-
- java.lang.Enum<ScaMethodTypeBO>
-
- de.adorsys.ledgers.um.api.domain.ScaMethodTypeBO
-
- All Implemented Interfaces:
Serializable,Comparable<ScaMethodTypeBO>
public enum ScaMethodTypeBO extends Enum<ScaMethodTypeBO>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisDecoupled()static ScaMethodTypeBOvalueOf(String name)Returns the enum constant of this type with the specified name.static ScaMethodTypeBO[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EMAIL
public static final ScaMethodTypeBO EMAIL
-
MOBILE
public static final ScaMethodTypeBO MOBILE
-
CHIP_OTP
public static final ScaMethodTypeBO CHIP_OTP
-
PHOTO_OTP
public static final ScaMethodTypeBO PHOTO_OTP
-
PUSH_OTP
public static final ScaMethodTypeBO PUSH_OTP
-
SMS_OTP
public static final ScaMethodTypeBO SMS_OTP
-
APP_OTP
public static final ScaMethodTypeBO APP_OTP
-
-
Method Detail
-
values
public static ScaMethodTypeBO[] 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 (ScaMethodTypeBO c : ScaMethodTypeBO.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ScaMethodTypeBO 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
-
isDecoupled
public boolean isDecoupled()
-
-