Enum AccountHolderPayoutNotificationContent.PayoutSpeedEnum
- java.lang.Object
-
- java.lang.Enum<AccountHolderPayoutNotificationContent.PayoutSpeedEnum>
-
- com.adyen.model.marketpaywebhooks.AccountHolderPayoutNotificationContent.PayoutSpeedEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AccountHolderPayoutNotificationContent.PayoutSpeedEnum>
- Enclosing class:
- AccountHolderPayoutNotificationContent
public static enum AccountHolderPayoutNotificationContent.PayoutSpeedEnum extends Enum<AccountHolderPayoutNotificationContent.PayoutSpeedEnum>
Speed with which payouts for this account are processed. Permitted values: `STANDARD`, `SAME_DAY`.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AccountHolderPayoutNotificationContent.PayoutSpeedEnumfromValue(String value)StringgetValue()StringtoString()static AccountHolderPayoutNotificationContent.PayoutSpeedEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AccountHolderPayoutNotificationContent.PayoutSpeedEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSTANT
public static final AccountHolderPayoutNotificationContent.PayoutSpeedEnum INSTANT
-
SAME_DAY
public static final AccountHolderPayoutNotificationContent.PayoutSpeedEnum SAME_DAY
-
STANDARD
public static final AccountHolderPayoutNotificationContent.PayoutSpeedEnum STANDARD
-
-
Method Detail
-
values
public static AccountHolderPayoutNotificationContent.PayoutSpeedEnum[] 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 (AccountHolderPayoutNotificationContent.PayoutSpeedEnum c : AccountHolderPayoutNotificationContent.PayoutSpeedEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccountHolderPayoutNotificationContent.PayoutSpeedEnum 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<AccountHolderPayoutNotificationContent.PayoutSpeedEnum>
-
fromValue
public static AccountHolderPayoutNotificationContent.PayoutSpeedEnum fromValue(String value)
-
-