Package com.adyen.model.acswebhooks
Enum ChallengeInfo.ChallengeCancelEnum
- java.lang.Object
-
- java.lang.Enum<ChallengeInfo.ChallengeCancelEnum>
-
- com.adyen.model.acswebhooks.ChallengeInfo.ChallengeCancelEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ChallengeInfo.ChallengeCancelEnum>
- Enclosing class:
- ChallengeInfo
public static enum ChallengeInfo.ChallengeCancelEnum extends Enum<ChallengeInfo.ChallengeCancelEnum>
Indicator informing the Access Control Server (ACS) and the Directory Server (DS) that the authentication has been cancelled. For possible values, refer to [3D Secure API reference](https://docs.adyen.com/online-payments/3d-secure/api-reference#mpidata).
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ChallengeInfo.ChallengeCancelEnumfromValue(String value)StringgetValue()StringtoString()static ChallengeInfo.ChallengeCancelEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ChallengeInfo.ChallengeCancelEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_01
public static final ChallengeInfo.ChallengeCancelEnum _01
-
_02
public static final ChallengeInfo.ChallengeCancelEnum _02
-
_03
public static final ChallengeInfo.ChallengeCancelEnum _03
-
_04
public static final ChallengeInfo.ChallengeCancelEnum _04
-
_05
public static final ChallengeInfo.ChallengeCancelEnum _05
-
_06
public static final ChallengeInfo.ChallengeCancelEnum _06
-
_07
public static final ChallengeInfo.ChallengeCancelEnum _07
-
-
Method Detail
-
values
public static ChallengeInfo.ChallengeCancelEnum[] 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 (ChallengeInfo.ChallengeCancelEnum c : ChallengeInfo.ChallengeCancelEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ChallengeInfo.ChallengeCancelEnum 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<ChallengeInfo.ChallengeCancelEnum>
-
fromValue
public static ChallengeInfo.ChallengeCancelEnum fromValue(String value)
-
-