Package com.adyen.model.payment
Enum AccountInfo.AccountChangeIndicatorEnum
- java.lang.Object
-
- java.lang.Enum<AccountInfo.AccountChangeIndicatorEnum>
-
- com.adyen.model.payment.AccountInfo.AccountChangeIndicatorEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AccountInfo.AccountChangeIndicatorEnum>
- Enclosing class:
- AccountInfo
public static enum AccountInfo.AccountChangeIndicatorEnum extends Enum<AccountInfo.AccountChangeIndicatorEnum>
Indicator for the length of time since the shopper's account was last updated. Allowed values: * thisTransaction * lessThan30Days * from30To60Days * moreThan60Days
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FROM30TO60DAYSLESSTHAN30DAYSMORETHAN60DAYSTHISTRANSACTION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AccountInfo.AccountChangeIndicatorEnumfromValue(String value)StringgetValue()StringtoString()static AccountInfo.AccountChangeIndicatorEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AccountInfo.AccountChangeIndicatorEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
THISTRANSACTION
public static final AccountInfo.AccountChangeIndicatorEnum THISTRANSACTION
-
LESSTHAN30DAYS
public static final AccountInfo.AccountChangeIndicatorEnum LESSTHAN30DAYS
-
FROM30TO60DAYS
public static final AccountInfo.AccountChangeIndicatorEnum FROM30TO60DAYS
-
MORETHAN60DAYS
public static final AccountInfo.AccountChangeIndicatorEnum MORETHAN60DAYS
-
-
Method Detail
-
values
public static AccountInfo.AccountChangeIndicatorEnum[] 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.AccountChangeIndicatorEnum c : AccountInfo.AccountChangeIndicatorEnum.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.AccountChangeIndicatorEnum 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.AccountChangeIndicatorEnum>
-
fromValue
public static AccountInfo.AccountChangeIndicatorEnum fromValue(String value)
-
-