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