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