Package com.adyen.model.checkout
Enum AcctInfo.SuspiciousAccActivityEnum
- java.lang.Object
-
- java.lang.Enum<AcctInfo.SuspiciousAccActivityEnum>
-
- com.adyen.model.checkout.AcctInfo.SuspiciousAccActivityEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AcctInfo.SuspiciousAccActivityEnum>
- Enclosing class:
- AcctInfo
public static enum AcctInfo.SuspiciousAccActivityEnum extends Enum<AcctInfo.SuspiciousAccActivityEnum>
Indicates whether the 3DS Requestor has experienced suspicious activity (including previous fraud) on the cardholder account. Allowed values: * **01** — No suspicious activity has been observed * **02** — Suspicious activity has been observed
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AcctInfo.SuspiciousAccActivityEnumfromValue(String value)StringgetValue()StringtoString()static AcctInfo.SuspiciousAccActivityEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AcctInfo.SuspiciousAccActivityEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_01
public static final AcctInfo.SuspiciousAccActivityEnum _01
-
_02
public static final AcctInfo.SuspiciousAccActivityEnum _02
-
-
Method Detail
-
values
public static AcctInfo.SuspiciousAccActivityEnum[] 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 (AcctInfo.SuspiciousAccActivityEnum c : AcctInfo.SuspiciousAccActivityEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AcctInfo.SuspiciousAccActivityEnum 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<AcctInfo.SuspiciousAccActivityEnum>
-
fromValue
public static AcctInfo.SuspiciousAccActivityEnum fromValue(String value)
-
-