Package com.adyen.model.marketpay
Enum CreateAccountRequest.PayoutScheduleEnum
- java.lang.Object
-
- java.lang.Enum<CreateAccountRequest.PayoutScheduleEnum>
-
- com.adyen.model.marketpay.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`.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCreateAccountRequest.PayoutScheduleEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description BIWEEKLY_ON_1ST_AND_15TH_AT_MIDNIGHTBIWEEKLY_ON_1ST_AND_15TH_AT_NOONDAILYDAILY_6PMDAILY_AUDAILY_EUDAILY_USDEFAULTEVERY_6_HOURS_FROM_MIDNIGHTHOLDMONTHLYWEEKLYWEEKLY_ON_TUE_FRI_MIDNIGHTYEARLY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreateAccountRequest.PayoutScheduleEnumfromValue(String text)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
-
BIWEEKLY_ON_1ST_AND_15TH_AT_NOON
public static final CreateAccountRequest.PayoutScheduleEnum BIWEEKLY_ON_1ST_AND_15TH_AT_NOON
-
DAILY
public static final CreateAccountRequest.PayoutScheduleEnum DAILY
-
DAILY_6PM
public static final CreateAccountRequest.PayoutScheduleEnum DAILY_6PM
-
DAILY_AU
public static final CreateAccountRequest.PayoutScheduleEnum DAILY_AU
-
DAILY_EU
public static final CreateAccountRequest.PayoutScheduleEnum DAILY_EU
-
DAILY_US
public static final CreateAccountRequest.PayoutScheduleEnum DAILY_US
-
DEFAULT
public static final CreateAccountRequest.PayoutScheduleEnum DEFAULT
-
EVERY_6_HOURS_FROM_MIDNIGHT
public static final CreateAccountRequest.PayoutScheduleEnum EVERY_6_HOURS_FROM_MIDNIGHT
-
HOLD
public static final CreateAccountRequest.PayoutScheduleEnum HOLD
-
MONTHLY
public static final CreateAccountRequest.PayoutScheduleEnum MONTHLY
-
WEEKLY
public static final CreateAccountRequest.PayoutScheduleEnum WEEKLY
-
WEEKLY_ON_TUE_FRI_MIDNIGHT
public static final CreateAccountRequest.PayoutScheduleEnum WEEKLY_ON_TUE_FRI_MIDNIGHT
-
YEARLY
public static final CreateAccountRequest.PayoutScheduleEnum YEARLY
-
-
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 text)
-
-