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