Enum PayoutScheduleBANotificationRequest.TypeEnum
- java.lang.Object
-
- java.lang.Enum<PayoutScheduleBANotificationRequest.TypeEnum>
-
- com.adyen.model.configurationwebhooks.PayoutScheduleBANotificationRequest.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PayoutScheduleBANotificationRequest.TypeEnum>
- Enclosing class:
- PayoutScheduleBANotificationRequest
public static enum PayoutScheduleBANotificationRequest.TypeEnum extends Enum<PayoutScheduleBANotificationRequest.TypeEnum>
Type of webhook.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BALANCEPLATFORM_BALANCEACCOUNTPAYOUTSCHEDULE_CREATEDBALANCEPLATFORM_BALANCEACCOUNTPAYOUTSCHEDULE_DELETEDBALANCEPLATFORM_BALANCEACCOUNTPAYOUTSCHEDULE_UPDATED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PayoutScheduleBANotificationRequest.TypeEnumfromValue(String value)StringgetValue()StringtoString()static PayoutScheduleBANotificationRequest.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PayoutScheduleBANotificationRequest.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BALANCEPLATFORM_BALANCEACCOUNTPAYOUTSCHEDULE_CREATED
public static final PayoutScheduleBANotificationRequest.TypeEnum BALANCEPLATFORM_BALANCEACCOUNTPAYOUTSCHEDULE_CREATED
-
BALANCEPLATFORM_BALANCEACCOUNTPAYOUTSCHEDULE_UPDATED
public static final PayoutScheduleBANotificationRequest.TypeEnum BALANCEPLATFORM_BALANCEACCOUNTPAYOUTSCHEDULE_UPDATED
-
BALANCEPLATFORM_BALANCEACCOUNTPAYOUTSCHEDULE_DELETED
public static final PayoutScheduleBANotificationRequest.TypeEnum BALANCEPLATFORM_BALANCEACCOUNTPAYOUTSCHEDULE_DELETED
-
-
Method Detail
-
values
public static PayoutScheduleBANotificationRequest.TypeEnum[] 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 (PayoutScheduleBANotificationRequest.TypeEnum c : PayoutScheduleBANotificationRequest.TypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PayoutScheduleBANotificationRequest.TypeEnum 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<PayoutScheduleBANotificationRequest.TypeEnum>
-
fromValue
public static PayoutScheduleBANotificationRequest.TypeEnum fromValue(String value)
-
-