Package com.adyen.model.balanceplatform
Enum ScaExemption
- java.lang.Object
-
- java.lang.Enum<ScaExemption>
-
- com.adyen.model.balanceplatform.ScaExemption
-
- All Implemented Interfaces:
Serializable,Comparable<ScaExemption>
public enum ScaExemption extends Enum<ScaExemption>
The type of exemption for Strong Customer Authentication (SCA). Possible values: * **lowerLimit**: the newly created limit is lower than the existing limit. * **notRegulated**: the limit is created in a country, region, or industry where it is not mandated by law to use SCA. * **setByPlatform**: you set a limit for one of your user's balance accounts, or for your balance platform. * **initialLimit**: there are no existing transfer limits set on the balance account or balance platform. * **alreadyPerformed**: you are confident about your user's identity and do not need to verify this using SCA.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALREADYPERFORMEDINITIALLIMITLOWERLIMITNOTREGULATEDSETBYPLATFORM
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ScaExemptionfromValue(String value)StringgetValue()StringtoString()static ScaExemptionvalueOf(String name)Returns the enum constant of this type with the specified name.static ScaExemption[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SETBYPLATFORM
public static final ScaExemption SETBYPLATFORM
-
INITIALLIMIT
public static final ScaExemption INITIALLIMIT
-
LOWERLIMIT
public static final ScaExemption LOWERLIMIT
-
NOTREGULATED
public static final ScaExemption NOTREGULATED
-
ALREADYPERFORMED
public static final ScaExemption ALREADYPERFORMED
-
-
Method Detail
-
values
public static ScaExemption[] 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 (ScaExemption c : ScaExemption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ScaExemption 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<ScaExemption>
-
fromValue
public static ScaExemption fromValue(String value)
-
-