Package com.adyen.model.marketpayaccount
Enum UpdateAccountRequest.PayoutSpeedEnum
- java.lang.Object
-
- java.lang.Enum<UpdateAccountRequest.PayoutSpeedEnum>
-
- com.adyen.model.marketpayaccount.UpdateAccountRequest.PayoutSpeedEnum
-
- All Implemented Interfaces:
Serializable,Comparable<UpdateAccountRequest.PayoutSpeedEnum>
- Enclosing class:
- UpdateAccountRequest
public static enum UpdateAccountRequest.PayoutSpeedEnum extends Enum<UpdateAccountRequest.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 UpdateAccountRequest.PayoutSpeedEnumfromValue(String value)StringgetValue()StringtoString()static UpdateAccountRequest.PayoutSpeedEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static UpdateAccountRequest.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 UpdateAccountRequest.PayoutSpeedEnum INSTANT
-
SAME_DAY
public static final UpdateAccountRequest.PayoutSpeedEnum SAME_DAY
-
STANDARD
public static final UpdateAccountRequest.PayoutSpeedEnum STANDARD
-
-
Method Detail
-
values
public static UpdateAccountRequest.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 (UpdateAccountRequest.PayoutSpeedEnum c : UpdateAccountRequest.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 UpdateAccountRequest.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<UpdateAccountRequest.PayoutSpeedEnum>
-
fromValue
public static UpdateAccountRequest.PayoutSpeedEnum fromValue(String value)
-
-