Package com.adyen.model.management
Enum PayoutSettings.PriorityEnum
- java.lang.Object
-
- java.lang.Enum<PayoutSettings.PriorityEnum>
-
- com.adyen.model.management.PayoutSettings.PriorityEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PayoutSettings.PriorityEnum>
- Enclosing class:
- PayoutSettings
public static enum PayoutSettings.PriorityEnum extends Enum<PayoutSettings.PriorityEnum>
Determines how long it takes for the funds to reach the bank account. Adyen pays out based on the [payout frequency](https://docs.adyen.com/account/getting-paid#payout-frequency). Depending on the currencies and banks involved in transferring the money, it may take up to three days for the payout funds to arrive in the bank account. Possible values: * **first**: same day. * **urgent**: the next day. * **normal**: between 1 and 3 days.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PayoutSettings.PriorityEnumfromValue(String value)StringgetValue()StringtoString()static PayoutSettings.PriorityEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PayoutSettings.PriorityEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIRST
public static final PayoutSettings.PriorityEnum FIRST
-
NORMAL
public static final PayoutSettings.PriorityEnum NORMAL
-
URGENT
public static final PayoutSettings.PriorityEnum URGENT
-
-
Method Detail
-
values
public static PayoutSettings.PriorityEnum[] 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 (PayoutSettings.PriorityEnum c : PayoutSettings.PriorityEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PayoutSettings.PriorityEnum 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<PayoutSettings.PriorityEnum>
-
fromValue
public static PayoutSettings.PriorityEnum fromValue(String value)
-
-