Package com.adyen.model.payment
Enum AccountInfo.DeliveryAddressUsageIndicatorEnum
- java.lang.Object
-
- java.lang.Enum<AccountInfo.DeliveryAddressUsageIndicatorEnum>
-
- com.adyen.model.payment.AccountInfo.DeliveryAddressUsageIndicatorEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AccountInfo.DeliveryAddressUsageIndicatorEnum>
- Enclosing class:
- AccountInfo
public static enum AccountInfo.DeliveryAddressUsageIndicatorEnum extends Enum<AccountInfo.DeliveryAddressUsageIndicatorEnum>
Indicator for the length of time since this delivery address was first used. 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.DeliveryAddressUsageIndicatorEnumfromValue(String value)StringgetValue()StringtoString()static AccountInfo.DeliveryAddressUsageIndicatorEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AccountInfo.DeliveryAddressUsageIndicatorEnum[]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.DeliveryAddressUsageIndicatorEnum THISTRANSACTION
-
LESSTHAN30DAYS
public static final AccountInfo.DeliveryAddressUsageIndicatorEnum LESSTHAN30DAYS
-
FROM30TO60DAYS
public static final AccountInfo.DeliveryAddressUsageIndicatorEnum FROM30TO60DAYS
-
MORETHAN60DAYS
public static final AccountInfo.DeliveryAddressUsageIndicatorEnum MORETHAN60DAYS
-
-
Method Detail
-
values
public static AccountInfo.DeliveryAddressUsageIndicatorEnum[] 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.DeliveryAddressUsageIndicatorEnum c : AccountInfo.DeliveryAddressUsageIndicatorEnum.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.DeliveryAddressUsageIndicatorEnum 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.DeliveryAddressUsageIndicatorEnum>
-
fromValue
public static AccountInfo.DeliveryAddressUsageIndicatorEnum fromValue(String value)
-
-