Package com.adyen.model.marketpayaccount
Enum CreateAccountRequest.PayoutScheduleEnum
- java.lang.Object
-
- java.lang.Enum<CreateAccountRequest.PayoutScheduleEnum>
-
- com.adyen.model.marketpayaccount.CreateAccountRequest.PayoutScheduleEnum
-
- All Implemented Interfaces:
Serializable,Comparable<CreateAccountRequest.PayoutScheduleEnum>
- Enclosing class:
- CreateAccountRequest
public static enum CreateAccountRequest.PayoutScheduleEnum extends Enum<CreateAccountRequest.PayoutScheduleEnum>
The payout schedule of the prospective account. >Permitted values: `DEFAULT`, `HOLD`, `DAILY`, `WEEKLY`, `MONTHLY`.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BIWEEKLY_ON_1ST_AND_15TH_AT_MIDNIGHTDAILYDAILY_AUDAILY_EUDAILY_SGDAILY_USHOLDMONTHLYWEEKLYWEEKLY_MON_TO_FRI_AUWEEKLY_MON_TO_FRI_EUWEEKLY_MON_TO_FRI_USWEEKLY_ON_TUE_FRI_MIDNIGHTWEEKLY_SUN_TO_THU_AUWEEKLY_SUN_TO_THU_US
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreateAccountRequest.PayoutScheduleEnumfromValue(String value)StringgetValue()StringtoString()static CreateAccountRequest.PayoutScheduleEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static CreateAccountRequest.PayoutScheduleEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BIWEEKLY_ON_1ST_AND_15TH_AT_MIDNIGHT
public static final CreateAccountRequest.PayoutScheduleEnum BIWEEKLY_ON_1ST_AND_15TH_AT_MIDNIGHT
-
DAILY
public static final CreateAccountRequest.PayoutScheduleEnum DAILY
-
DAILY_AU
public static final CreateAccountRequest.PayoutScheduleEnum DAILY_AU
-
DAILY_EU
public static final CreateAccountRequest.PayoutScheduleEnum DAILY_EU
-
DAILY_SG
public static final CreateAccountRequest.PayoutScheduleEnum DAILY_SG
-
DAILY_US
public static final CreateAccountRequest.PayoutScheduleEnum DAILY_US
-
HOLD
public static final CreateAccountRequest.PayoutScheduleEnum HOLD
-
MONTHLY
public static final CreateAccountRequest.PayoutScheduleEnum MONTHLY
-
WEEKLY
public static final CreateAccountRequest.PayoutScheduleEnum WEEKLY
-
WEEKLY_MON_TO_FRI_AU
public static final CreateAccountRequest.PayoutScheduleEnum WEEKLY_MON_TO_FRI_AU
-
WEEKLY_MON_TO_FRI_EU
public static final CreateAccountRequest.PayoutScheduleEnum WEEKLY_MON_TO_FRI_EU
-
WEEKLY_MON_TO_FRI_US
public static final CreateAccountRequest.PayoutScheduleEnum WEEKLY_MON_TO_FRI_US
-
WEEKLY_ON_TUE_FRI_MIDNIGHT
public static final CreateAccountRequest.PayoutScheduleEnum WEEKLY_ON_TUE_FRI_MIDNIGHT
-
WEEKLY_SUN_TO_THU_AU
public static final CreateAccountRequest.PayoutScheduleEnum WEEKLY_SUN_TO_THU_AU
-
WEEKLY_SUN_TO_THU_US
public static final CreateAccountRequest.PayoutScheduleEnum WEEKLY_SUN_TO_THU_US
-
-
Method Detail
-
values
public static CreateAccountRequest.PayoutScheduleEnum[] 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.PayoutScheduleEnum c : CreateAccountRequest.PayoutScheduleEnum.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.PayoutScheduleEnum 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.PayoutScheduleEnum>
-
fromValue
public static CreateAccountRequest.PayoutScheduleEnum fromValue(String value)
-
-