Package com.adyen.model.payment
Enum AccountInfo.PasswordChangeIndicatorEnum
- java.lang.Object
-
- java.lang.Enum<AccountInfo.PasswordChangeIndicatorEnum>
-
- com.adyen.model.payment.AccountInfo.PasswordChangeIndicatorEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AccountInfo.PasswordChangeIndicatorEnum>
- Enclosing class:
- AccountInfo
public static enum AccountInfo.PasswordChangeIndicatorEnum extends Enum<AccountInfo.PasswordChangeIndicatorEnum>
Indicator when the shopper has changed their password. Allowed values: * notApplicable * thisTransaction * lessThan30Days * from30To60Days * moreThan60Days
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FROM30TO60DAYSLESSTHAN30DAYSMORETHAN60DAYSNOTAPPLICABLETHISTRANSACTION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AccountInfo.PasswordChangeIndicatorEnumfromValue(String value)StringgetValue()StringtoString()static AccountInfo.PasswordChangeIndicatorEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AccountInfo.PasswordChangeIndicatorEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOTAPPLICABLE
public static final AccountInfo.PasswordChangeIndicatorEnum NOTAPPLICABLE
-
THISTRANSACTION
public static final AccountInfo.PasswordChangeIndicatorEnum THISTRANSACTION
-
LESSTHAN30DAYS
public static final AccountInfo.PasswordChangeIndicatorEnum LESSTHAN30DAYS
-
FROM30TO60DAYS
public static final AccountInfo.PasswordChangeIndicatorEnum FROM30TO60DAYS
-
MORETHAN60DAYS
public static final AccountInfo.PasswordChangeIndicatorEnum MORETHAN60DAYS
-
-
Method Detail
-
values
public static AccountInfo.PasswordChangeIndicatorEnum[] 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 (AccountInfo.PasswordChangeIndicatorEnum c : AccountInfo.PasswordChangeIndicatorEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccountInfo.PasswordChangeIndicatorEnum 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<AccountInfo.PasswordChangeIndicatorEnum>
-
fromValue
public static AccountInfo.PasswordChangeIndicatorEnum fromValue(String value)
-
-